Skip to content

Commit

Permalink
Updates github workflows to node 16.
Browse files Browse the repository at this point in the history
  • Loading branch information
steven2308 committed Feb 2, 2024
1 parent c72ac41 commit 7d8398a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
- name: Run prettier
uses: actions/setup-node@v1
with:
node-version: "16"
node-version: "18"
- run: yarn install
- run: yarn prettier
4 changes: 2 additions & 2 deletions .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
- run: npm ci
- run: npm test

Expand All @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
registry-url: https://npm.pkg.github.com/
- run: npm ci
- run: npm publish
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
- name: Run unit tests
uses: actions/setup-node@v1
with:
node-version: "16"
node-version: "18"
- run: yarn install
- run: npx hardhat test

0 comments on commit 7d8398a

Please sign in to comment.