Skip to content

Commit 297096d

Browse files
authored
ci: added build-all job
1 parent 9fa5774 commit 297096d

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/build.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
build:
13-
name: Build
13+
name: Build (${{ matrix.node-version }})
1414
runs-on: ubuntu-latest
1515
timeout-minutes: 5
1616
permissions:
@@ -44,3 +44,12 @@ jobs:
4444
- name: Publish
4545
if: ${{ github.ref_type == 'tag' }}
4646
run: npm publish
47+
48+
build-all:
49+
name: Build
50+
runs-on: ubuntu-latest
51+
permissions:
52+
contents: read
53+
needs: [ build ]
54+
steps:
55+
- run: echo OK

0 commit comments

Comments
 (0)