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 1f2f50d commit f9bcccaCopy full SHA for f9bccca
.github/workflows/nodejs.yml
@@ -1,17 +1,21 @@
1
name: Node.js CI
2
on: [push]
3
+
4
+permissions:
5
+ contents: read
6
7
jobs:
8
build:
9
runs-on: ubuntu-latest
10
steps:
- - uses: actions/checkout@v4
- - name: Use Node.js
- uses: actions/setup-node@v4
- with:
11
- node-version: 22
12
- cache: 'npm'
13
- - run: npm install
14
- - run: npm run build --if-present
15
- - run: npm test
16
- env:
17
- CI: true
+ - uses: actions/checkout@v4
+ - name: Use Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version: 22
+ cache: 'npm'
+ - run: npm install
18
+ - run: npm run build --if-present
19
+ - run: npm test
20
+ env:
21
+ CI: true
.github/workflows/publish.yml
@@ -4,6 +4,9 @@ on:
release:
types: [created]
publish-npm:
0 commit comments