Skip to content

chore: test pr workflow #4

chore: test pr workflow

chore: test pr workflow #4

Workflow file for this run

name: 'PR Tests'
on:
pull_request:
branches: [main, develop]
jobs:
pr-lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- uses: pnpm/action-setup@v2
with:
version: 7.0.1
- uses: actions/setup-node@v4
with:
node-version: 16.13.0
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Run lint, type checks and tests
run: |
pnpm concurrently -g \
"pnpm lint" \
"pnpm check:types" \
"pnpm test -- --maxWorkers=4 --no-color --coverage=false --changedSince=origin/main"