Skip to content

Commit e590616

Browse files
author
Esen Sagynov
committed
Updated the Git build action to the latest versions.
Making the Git action file consistent with other projects.
1 parent c64187e commit e590616

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/ci.yaml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
name: CI
1+
name: Build
22

33
on:
44
push:
5-
branches:
6-
- main
5+
branches:
6+
- main
77
pull_request:
8-
branches:
9-
- main
8+
branches:
9+
- main
1010

1111
jobs:
1212
build:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
node-version: [12.x, 14.x]
16+
node: ["16", "18", "20"]
1717
steps:
18-
- uses: actions/checkout@v1
19-
- name: Use Node.js ${{ matrix.node-version }}
20-
uses: actions/setup-node@v1
18+
- uses: actions/checkout@v4
19+
- name: Use Node.js ${{ matrix.node }}
20+
uses: actions/setup-node@v4
2121
with:
22-
node-version: ${{ matrix.node-version }}
22+
node-version: ${{ matrix.node }}
2323
- name: Installing
2424
run: yarn install --frozen-lockfile
2525
- name: Linting

0 commit comments

Comments
 (0)