Skip to content

ci: upgrade to using node 18 #454

ci: upgrade to using node 18

ci: upgrade to using node 18 #454

Workflow file for this run

name: Tests and Checks
on: [push]
jobs:
lint:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 18
cache: "yarn"
- name: Install deps
# enabeling updating the lock file for a bug in yarn berry likely related to installing github
run: YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn
- name: Lint
run: yarn lint
- name: pretty
run: yarn pretty
test:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 18
cache: "yarn"
- name: Install deps
# enabeling updating the lock file for a bug in yarn berry likely related to installing github
run: YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn
- name: Prepare local
run: yarn prepare:local
- name: Codegen
run: yarn codegen
- name: Run Matchstick tests
run: yarn test
# integration-test:
# runs-on: ubuntu-20.04
# steps:
# - name: Checkout
# uses: actions/checkout@v2
# - name: Start containers
# run: docker-compose up -d --build
# - name: Run integration tests
# run: docker exec -i subgraph-hardhat-node yarn workspace isolated-pools-subgraph run test:integration
# - name: Stop containers
# if: always()
# run: docker-compose down -v