Skip to content

Merge pull request #166 from openstax/K12-71/fix-manual-reload #715

Merge pull request #166 from openstax/K12-71/fix-manual-reload

Merge pull request #166 from openstax/K12-71/fix-manual-reload #715

Workflow file for this run

---
name: Tests
on:
pull_request:
push:
branches:
- main
jobs:
tests:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.12.2"
- name: Setup
run: |
npm install
npx playwright install chromium
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Test
run: npm test
- name: Upload Code Coverage
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}