Skip to content

feat(test): migrate to testing-library (#306) #220

feat(test): migrate to testing-library (#306)

feat(test): migrate to testing-library (#306) #220

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci
- name: Test
run: npm test
- name: Build
run: npm run build