We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2f71838 + fccbc33 commit 906c03cCopy full SHA for 906c03c
.github/workflows/node.js.yml
@@ -5,24 +5,19 @@ name: Node.js CI
5
6
on:
7
push:
8
- branches: [ master ]
+ branches: [ main ]
9
pull_request:
10
11
12
jobs:
13
- build:
+ ci:
14
runs-on: ubuntu-latest
15
- strategy:
16
- matrix:
17
- node-version: [20.x]
18
- # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
19
-
20
steps:
21
- uses: actions/checkout@v6
22
- - name: Use Node.js ${{ matrix.node-version }}
+ - name: Use Node.js 20.x
23
uses: actions/setup-node@v6
24
with:
25
- node-version: ${{ matrix.node-version }}
+ node-version: 20.x
26
cache: 'npm'
27
- run: npm ci
28
- run: npm run ci
0 commit comments