Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Review app : use latest Node.js LTS #108

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading