Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
joelspadin committed Mar 16, 2024
1 parent bf10c26 commit ba9082e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{vars.NODE_VERSION}}
- name: Install modules
run: npm install
- name: Run Prettier
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,8 @@ jobs:
contents: write

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{vars.NODE_VERSION}}
uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{vars.NODE_VERSION}}

Expand All @@ -40,7 +39,7 @@ jobs:
run: npm run build:wasm

- name: release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
fail_on_unmatched_files: true
generate_release_notes: true
Expand Down

0 comments on commit ba9082e

Please sign in to comment.