Skip to content

Commit

Permalink
Review app : use latest Node.js LTS
Browse files Browse the repository at this point in the history
Specify the Node.js version to use (latest LTS branch), as recommended in the [GitHub Actions documentation](https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs#specifying-the-nodejs-version).
  • Loading branch information
davlgd authored Dec 16, 2023
1 parent 0cde1b5 commit 0e4cfe1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/review-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ jobs:
run: |
ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: install clever-tools
run: npm install -g clever-tools
- name: Create app and configure app
Expand Down Expand Up @@ -81,6 +85,10 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: install clever-tools
run: npm install -g clever-tools
- name: Link and update app
Expand Down Expand Up @@ -109,6 +117,10 @@ jobs:
pull-requests: write
if: always() && github.event_name == 'pull_request_target' && github.event.action == 'closed'
steps:
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: install clever-tools
run: npm install -g clever-tools
- name: Delete app
Expand Down

0 comments on commit 0e4cfe1

Please sign in to comment.