-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c63266b
commit bdbc2d7
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,16 +10,18 @@ jobs: | |
if: true | ||
runs-on: ubuntu-latest | ||
|
||
permissions: write-all | ||
|
||
steps: | ||
- name: 'Checkout' # Download code from the repository | ||
uses: actions/checkout@v2 # Public action | ||
with: | ||
fetch-depth: 0 # Checkout all branches and tags | ||
|
||
- name: 'Use NodeJS 16' # Setup node using version 14 | ||
- name: 'Use NodeJS 18' # Setup node using version 14 | ||
uses: actions/setup-node@v2 # Public action | ||
with: | ||
node-version: '16.18.1' | ||
node-version: '18.17.0' | ||
|
||
- name: 'Setup [email protected]' | ||
run: yarn global add [email protected] --ignore-engines | ||
|