Next release after imwss #206
Workflow file for this run
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 build and test | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 8.14.1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Set environment variables to include next versions of contracts | |
run: echo "COLONY_CONTRACTOR_INCLUDE_NEXT=true" >> $GITHUB_ENV | |
- run: pnpm run bootstrap | |
- run: pnpm run lint | |
- run: pnpm run build | |
env: | |
NODE_OPTIONS: --max-old-space-size=4096 | |
- run: pnpm run test | |
env: | |
CI: true | |
NODE_OPTIONS: --max-old-space-size=4096 |