We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0d4224 commit 1b26a23Copy full SHA for 1b26a23
.github/workflows/pipeline.yml
@@ -10,7 +10,7 @@ on:
10
jobs:
11
install:
12
name: Install
13
- runs-on: docker://alpine:latest
+ runs-on: ubuntu-latest
14
strategy:
15
matrix:
16
node-version: [22.x]
@@ -26,14 +26,14 @@ jobs:
26
build:
27
name: Build
28
needs: [install]
29
30
steps:
31
- name: Build
32
run: npm run build --if-present
33
test:
34
name: Unit Tests
35
needs: [build]
36
37
38
- name: Unit Tests
39
run: npm test
0 commit comments