[REG-1633] Revert to v2 of setup-node, use GITHUB_TOKEN to push releases #1641
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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
workflow_dispatch: {} | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 20.x | |
- run: yarn install --immutable | |
- run: yarn lint | |
- run: yarn build:package | |
- run: yarn rebuild:sandbox | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 20.x | |
- run: yarn install --immutable | |
- run: yarn compile | |
env: | |
FORCE_COLOR: 1 | |
- run: yarn test | |
env: | |
FORCE_COLOR: 1 | |
ENABLE_GAS_REPORT: true | |
- name: Print gas report | |
run: cat gas-report.txt | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 20.x | |
- run: yarn install --immutable | |
- run: yarn coverage | |
env: | |
NODE_OPTIONS: --max_old_space_size=4096 | |
- uses: codecov/codecov-action@v3 |