Skip to content

Commit

Permalink
Upgrade checkout and setup-node versions in workflows (#16)
Browse files Browse the repository at this point in the history
* Delete node-version param from workflows

* Upgrade checkout and setup-node versions in workflows
  • Loading branch information
DavisDmitry authored Jun 19, 2024
1 parent 2df15e3 commit 6998ab2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-versions: 20
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: yarn
- run: yarn lint
5 changes: 2 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,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
registry-url: 'https://registry.npmjs.org'
- run: yarn
- run: yarn publish
Expand Down

0 comments on commit 6998ab2

Please sign in to comment.