feat: target_canister to be handled only for method install_chunked_code #1416
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: Check Lint | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - edited | |
| - synchronize | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| ghc: ['8.8.4'] | |
| spec: | |
| - release-0.16 # https://github.com/dfinity-lab/ic-ref/tree/release-0.16 | |
| node: | |
| - 20 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - run: npm install -g npm | |
| - run: npm install | |
| - run: npm run lint --workspaces --if-present -- --max-warnings=0 |