-
Notifications
You must be signed in to change notification settings - Fork 9
39 lines (36 loc) · 983 Bytes
/
validate.yaml
File metadata and controls
39 lines (36 loc) · 983 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: Validate
on:
pull_request:
types: [opened, synchronize, reopened]
# Concurrency configuration to cancel previous runs on new commits
concurrency:
group: validate-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
validate:
name: ${{ matrix.check }}
runs-on: ubuntu-latest
strategy:
matrix:
check:
- TypeScript Check
- Lint Check
- Format Check
include:
- check: TypeScript Check
command: typecheck
- check: Lint Check
command: lint
- check: Format Check
command: format:check
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: Install dependencies
run: npm ci
- name: Run ${{ matrix.check }}
run: npm run ${{ matrix.command }}