We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6395c8a commit 14adec2Copy full SHA for 14adec2
1 file changed
.scrutinizer.yml
@@ -1,17 +1,21 @@
1
-build:
2
- image: default-jammy
+name: CI
3
4
- environment:
5
- node: 22
+on:
+ push:
+ pull_request:
6
7
- nodes:
8
- analysis:
9
- dependencies:
10
- override:
11
- - npm install -g pnpm@10
+jobs:
+ build:
+ runs-on: ubuntu-latest
12
13
- tests:
14
15
- - cd artifacts/personal-tool-console
16
- - pnpm install --frozen-lockfile
17
- - pnpm run build
+ steps:
+ - uses: actions/checkout@v4
+
+ - uses: actions/setup-node@v4
+ with:
+ node-version: 20.19.0
+ cache: npm
18
19
+ - run: npm ci
20
+ - run: npm run build
21
+ - run: npm run lint
0 commit comments