Skip to content

Fixed Actions workflow #4

Fixed Actions workflow

Fixed Actions workflow #4

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 16
cache: "pnpm"
- name: Install dependencies
run: pnpm i
- name: Run tests
run: pnpm -r test