refactor: update comment in migrate.sh for clarity #52
Workflow file for this run
This file contains hidden or 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: Test | |
| on: [push] | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go 1.16 | |
| uses: actions/setup-go@v1 | |
| with: | |
| go-version: 1.16 | |
| id: go | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: '16' | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| with: | |
| version: stable | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v3 | |
| - name: Resolve dependencies | |
| run: npm install | |
| - name: Setup ganache-cli | |
| run: NO_GEN_CODE=1 ./scripts/setup.sh development | |
| - name: Test | |
| run: make test |