-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (34 loc) · 818 Bytes
/
run-tests.yml
File metadata and controls
39 lines (34 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Run Tests
on:
pull_request:
types: [opened, synchronize]
push:
branches: ["main"]
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Setup PNPM
uses: pnpm/action-setup@v4
with:
version: 9.15.4
- name: Checkout project
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: 'pnpm'
node-version: 18
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: pnpm i
- name: Lint
run: pnpm lint
- name: Typecheck
run: pnpm check
- name: Run tests
run: pnpm test