Skip to content

Commit 29d4e0e

Browse files
authored
ci: running attw along our test suite (#1004)
1 parent c8495ab commit 29d4e0e

6 files changed

Lines changed: 570 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,26 @@ on:
77
pull_request:
88

99
jobs:
10+
attw:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: lts/-1
17+
cache: 'npm'
18+
19+
- run: npm ci
20+
- run: npm run attw
21+
1022
linting:
1123
runs-on: ubuntu-latest
1224
steps:
1325
- uses: actions/checkout@v4
1426
- uses: actions/setup-node@v4
1527
with:
16-
node-version: 20
28+
node-version: lts/-1
29+
cache: 'npm'
1730

1831
- run: npm ci
1932
- run: npm run build
@@ -40,6 +53,7 @@ jobs:
4053
- uses: actions/setup-node@v4
4154
with:
4255
node-version: ${{ matrix.node-version }}
56+
cache: 'npm'
4357

4458
- name: Install dependencies
4559
run: npm ci

0 commit comments

Comments
 (0)