We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c64187e commit e590616Copy full SHA for e590616
.github/workflows/ci.yaml
@@ -1,25 +1,25 @@
1
-name: CI
+name: Build
2
3
on:
4
push:
5
- branches:
6
- - main
+ branches:
+ - main
7
pull_request:
8
9
10
11
jobs:
12
build:
13
runs-on: ubuntu-latest
14
strategy:
15
matrix:
16
- node-version: [12.x, 14.x]
+ node: ["16", "18", "20"]
17
steps:
18
- - uses: actions/checkout@v1
19
- - name: Use Node.js ${{ matrix.node-version }}
20
- uses: actions/setup-node@v1
+ - uses: actions/checkout@v4
+ - name: Use Node.js ${{ matrix.node }}
+ uses: actions/setup-node@v4
21
with:
22
- node-version: ${{ matrix.node-version }}
+ node-version: ${{ matrix.node }}
23
- name: Installing
24
run: yarn install --frozen-lockfile
25
- name: Linting
0 commit comments