OPS: Specify Node version (#5888)

This commit is contained in:
Marcos Rodriguez Vélez 2023-12-06 18:56:06 -04:00 committed by GitHub
parent 26eba342c5
commit 4e0ab232c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,13 @@ jobs:
env: env:
APPLE_ID: ${{ secrets.APPLE_ID }} # Setting the environment variable APPLE_ID: ${{ secrets.APPLE_ID }} # Setting the environment variable
steps: steps:
- uses: actions/checkout@v2 - name: Checkout project
uses: actions/checkout@v3
- name: Specify node version
uses: actions/setup-node@v2-beta
with:
node-version: 16
- uses: maxim-lobanov/setup-xcode@v1 - uses: maxim-lobanov/setup-xcode@v1
with: with:
@ -54,9 +60,6 @@ jobs:
- name: Install node_modules - name: Install node_modules
run: npm install run: npm install
- name: Run postinstall script
run: npm run postinstall
- name: Set up Git Authentication - name: Set up Git Authentication
env: env:
ACCESS_TOKEN: ${{ secrets.GIT_ACCESS_TOKEN }} ACCESS_TOKEN: ${{ secrets.GIT_ACCESS_TOKEN }}