Skip to content

[ENG-10799][ci][eas-cli][eas-json] test against node 20 and drop support for node 14 #41

[ENG-10799][ci][eas-cli][eas-json] test against node 20 and drop support for node 14

[ENG-10799][ci][eas-cli][eas-json] test against node 20 and drop support for node 14 #41

Workflow file for this run

name: Test scripts
defaults:
run:
working-directory: scripts
on:
push:
branches: [main]
paths:
- 'scripts/**'
pull_request:
paths:
- 'scripts/**'
concurrency:
group: test-scripts-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 20
- run: cp yarn.lock yarn.lock.bak
- run: yarn install --check-files
- run: diff -y --suppress-common-lines yarn.lock yarn.lock.bak
- run: yarn typecheck