Skip to content

Bump glob from 10.4.5 to 10.5.0 in /frontend #9

Bump glob from 10.4.5 to 10.5.0 in /frontend

Bump glob from 10.4.5 to 10.5.0 in /frontend #9

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test-backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Backend tests
run: make test-backend
test-frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Frontend tests
run: make test-frontend