-
Notifications
You must be signed in to change notification settings - Fork 4
77 lines (74 loc) · 1.87 KB
/
ci.yaml
File metadata and controls
77 lines (74 loc) · 1.87 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: ci
on:
push:
branches: [main, "v*"]
tags: ["v*"]
pull_request:
branches: [main, "v*"]
workflow_dispatch:
permissions:
contents: read
env:
# https://consoledonottrack.com/
DO_NOT_TRACK: 1
GOMODCACHE: /home/runner/go/pkg/mod
jobs:
tasks:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
task:
- format
- attw
- build
- lint
- license-header
- update-readme
include:
- task: format
diff-check: true
- task: license-header
diff-check: true
- task: build
diff-check: true
- task: update-readme
diff-check: true
name: ${{ matrix.task }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
- uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: "npm"
- uses: actions/cache@v5
with:
path: .turbo
key: ${{ runner.os }}/${{ matrix.task }}/${{ github.sha }}
restore-keys: ${{ runner.os }}/${{ matrix.task }}
- run: npm ci
- run: npx turbo run ${{ matrix.task }}
- name: Check changed files
if: ${{ matrix.diff-check }}
run: node scripts/gh-diffcheck.js
test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
node-version: [20.x, 22.x, 24.x]
name: "test on Node.js ${{ matrix.node-version }}"
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v5
with:
path: .turbo
key: ${{ runner.os }}/test/${{ github.sha }}
restore-keys: ${{ runner.os }}/test
- run: npm ci
- run: npx turbo run test