Skip to content

ci(publish): fix typo #51

ci(publish): fix typo

ci(publish): fix typo #51

Workflow file for this run

name: tests
on:
pull_request:
push:
branches:
- master
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: node_modules
key: ${{ hashFiles('package-lock.json') }}
- uses: cachix/install-nix-action@v27
with:
nix_path: nixpkgs=channel:nixos-24.11
enable_kvm: true
- run: nix-shell --run 'npm ci'
- run: nix-shell --run 'npm start -- -p 3000 &'
- run: nix-shell --run 'npm run test'
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}