Skip to content

Commit 7ff3692

Browse files
authored
Merge pull request #23 from nemuvski/chore-update-gh-workflows
Update github workflows
2 parents 3d20411 + 9856f32 commit 7ff3692

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/codecheck.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: CodeCheck
33
on:
44
push:
55
tags-ignore:
6-
- '*'
6+
- "*"
77
branches: [main]
88
paths-ignore:
9-
- '**.md'
9+
- "**.md"
1010
pull_request:
1111
types: [opened, synchronize, reopened]
1212

@@ -15,11 +15,11 @@ jobs:
1515
name: CodeCheck
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
19-
- uses: actions/setup-node@v3
18+
- uses: actions/checkout@v4
19+
- uses: actions/setup-node@v4
2020
with:
21-
node-version-file: '.node-version'
22-
cache: 'npm'
21+
node-version-file: ".node-version"
22+
cache: "npm"
2323
- run: npm ci
2424
- name: prettier
2525
run: npm run format

.github/workflows/latest-release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
id-token: write
2020

2121
steps:
22-
- uses: actions/checkout@v2
23-
- uses: actions/setup-node@v3
22+
- uses: actions/checkout@v4
23+
- uses: actions/setup-node@v4
2424
with:
25-
node-version-file: '.node-version'
26-
cache: 'npm'
27-
registry-url: 'https://registry.npmjs.org'
25+
node-version-file: ".node-version"
26+
cache: "npm"
27+
registry-url: "https://registry.npmjs.org"
2828
- run: npm ci
2929
- name: building
3030
run: npm run build

0 commit comments

Comments
 (0)