Skip to content

I do not enjoy this commit #29

I do not enjoy this commit

I do not enjoy this commit #29

Workflow file for this run

name: Run Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 21
- run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Upload test report
uses: actions/upload-artifact@v3
with:
name: test-report
path: ./.jest-stare/*