Skip to content

Commit 1b26a23

Browse files
authored
Update pipeline.yml
1 parent e0d4224 commit 1b26a23

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
install:
1212
name: Install
13-
runs-on: docker://alpine:latest
13+
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
1616
node-version: [22.x]
@@ -26,14 +26,14 @@ jobs:
2626
build:
2727
name: Build
2828
needs: [install]
29-
runs-on: docker://alpine:latest
29+
runs-on: ubuntu-latest
3030
steps:
3131
- name: Build
3232
run: npm run build --if-present
3333
test:
3434
name: Unit Tests
3535
needs: [build]
36-
runs-on: docker://alpine:latest
36+
runs-on: ubuntu-latest
3737
steps:
3838
- name: Unit Tests
3939
run: npm test

0 commit comments

Comments
 (0)