Skip to content

add a wf to run on opened PR #5

add a wf to run on opened PR

add a wf to run on opened PR #5

Workflow file for this run

name: CI workflow
on: push
jobs:
run-linter-and-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install
- name: Lint code
run: pnpm run lint
- name: Run tests
run: pnpm test