Skip to content

Course fetch API, schema update, and testing infrastructure #12

Course fetch API, schema update, and testing infrastructure

Course fetch API, schema update, and testing infrastructure #12

name: Frontend CI
on:
push:
branches:
- main
pull_request:
branches:
- main
- staging
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: CI
working-directory: ./frontend
run: |
npm install
npm run build --if-present
npm test