Add Cartridge controller (#524) #957
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: Build | |
on: | |
pull_request: | |
branches: | |
- main | |
- develop | |
push: | |
branches: | |
- main | |
- develop | |
jobs: | |
test: | |
services: | |
devnet: | |
image: shardlabs/starknet-devnet-rs:0.0.6-seed0 | |
ports: | |
- 5050:5050 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set Node version | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9.10.0 | |
- name: Install dependencies | |
run: pnpm install --strict-peer-dependencies=false --no-frozen-lockfile | |
- name: Run check format | |
run: pnpm format:check | |
- name: Run lint | |
run: pnpm lint | |
- name: Run build | |
run: pnpm build | |
- name: Run test | |
run: pnpm test:ci | |
- name: Check change files | |
run: pnpm beachball check |