Skip to content

Commit

Permalink
feat: upgraded to node lts
Browse files Browse the repository at this point in the history
  • Loading branch information
DudeRandom21 committed May 17, 2023
1 parent 89b0fe6 commit 9abd679
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.15
uses: actions/setup-node@v2
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 14.15
node-version: 'lts/*'
- name: Install dependencies
working-directory: ./core
run: yarn install
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pull-request-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Uses Node.js 14.17
uses: actions/setup-node@v2
- uses: actions/checkout@v3
- name: Uses Node.js
uses: actions/setup-node@v3
with:
node-version: 14.17
node-version: 'lts/*'
- name: Install dependencies
working-directory: ./core
run: yarn install
Expand Down

0 comments on commit 9abd679

Please sign in to comment.