Skip to content

feat: add new workflow - Pull Request #2

feat: add new workflow - Pull Request

feat: add new workflow - Pull Request #2

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