Skip to content

Commit

Permalink
update used github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddykasp committed Jun 19, 2024
1 parent 5f6ba06 commit a87500b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 14.x
- run: yarn
- run: yarn lint
- run: yarn build
- run: yarn test
- run: yarn test
6 changes: 3 additions & 3 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 14.x
registry-url: 'https://registry.npmjs.org'
scope: '@kieler'
- run: yarn
- run: yarn package
- run: yarn package
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4s
with:
node-version: "14.x"
registry-url: 'https://registry.npmjs.org'
Expand All @@ -32,8 +32,8 @@ jobs:
# Github has no official action for this. Uses: https://github.com/JasonEtco/upload-to-release
# Uploads each CLI asset separately to create more targeted download options
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "14.x"
- run: yarn
Expand Down

0 comments on commit a87500b

Please sign in to comment.