-
-
Notifications
You must be signed in to change notification settings - Fork 11
37 lines (29 loc) · 670 Bytes
/
Copy pathci.yml
File metadata and controls
37 lines (29 loc) · 670 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
name: Lint & Test
on:
push:
branches: master
pull_request:
workflow_dispatch:
jobs:
test:
name: Check Linting and Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3.3.0
- name: Setup Node
uses: actions/setup-node@v3.6.0
with:
node-version: 20
- name: Install pnpm
uses: pnpm/action-setup@v2.2.4
with:
version: 8.6
- name: Install Dependencies
run: pnpm install
- name: Run Linter
run: pnpm lint
- name: Build Source
run: pnpm build
- name: Run Tests
run: pnpm test