Skip to content

Commit

Permalink
Merge pull request #35 from SaekiTominaga/actions@4
Browse files Browse the repository at this point in the history
`actions/checkout` と `actions/setup-node` をバージョン4にアップデート
  • Loading branch information
SaekiTominaga committed Apr 2, 2024
2 parents 34285f1 + bdf6031 commit ab77285
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/eslint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: '20'
- run: npm ci
- run: npm test -w '@w0s/eslint-config'
6 changes: 3 additions & 3 deletions .github/workflows/github-actions-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: '20'
- run: npm ci
- run: npm run github-actions-lint
6 changes: 3 additions & 3 deletions .github/workflows/markuplint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: '20'
- run: npm ci
- run: npm test -w '@w0s/markuplint-config'
6 changes: 3 additions & 3 deletions .github/workflows/stylelint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: '20'
- run: npm ci
- run: npm test -w '@w0s/stylelint-config'
6 changes: 3 additions & 3 deletions .github/workflows/typescript-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: '20'
- run: npm ci
- run: npm test -w '@w0s/tsconfig'

0 comments on commit ab77285

Please sign in to comment.