Skip to content

Merge pull request #153 from openstax/K12-46/implement-search-ui-comp… #667

Merge pull request #153 from openstax/K12-46/implement-search-ui-comp…

Merge pull request #153 from openstax/K12-46/implement-search-ui-comp… #667

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.11.0"
- 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@v3