Skip to content

Commit 93f74d0

Browse files
committed
🔧 chore: Update CI
1 parent d3d50fc commit 93f74d0

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

.github/workflows/qa.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,31 @@ on:
77

88
jobs:
99
qa:
10-
name: Lint & Build
10+
name: Lint, Typecheck, Test and Build source files
1111
runs-on: [self-hosted, Linux]
1212
steps:
1313
- name: Checkout repository
1414
uses: actions/checkout@v4
1515

1616
- name: Setup Node
17-
uses: actions/setup-node@v3
17+
uses: actions/setup-node@v4
1818
with:
19-
node-version: 16
19+
node-version: 20
2020

2121
- name: Install dependencies
22-
run: npm ci --ignore-scripts
22+
run: npm ci
2323

2424
- name: Lint source files
2525
run: npm run lint
2626

27+
- name: Run Prettier
28+
run: npm run prettier
29+
30+
- name: Check types
31+
run: npm run typecheck
32+
33+
- name: Run tests
34+
run: npm run test:coverage
35+
2736
- name: Build package
2837
run: npm run build

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ jobs:
4141
app-id: ${{ secrets.AUTH_APP_ID }}
4242
app-key: ${{ secrets.AUTH_APP_KEY }}
4343
npm-publish: public
44-
npm-token: ${{ secrets.NPM_AUTH_TOKEN }}
44+
npm-token: ${{ secrets.NPM_AUTH_TOKEN_PUBLIC }}

0 commit comments

Comments
 (0)