name: PR on: [pull_request] jobs: pr: continue-on-error: true strategy: matrix: step: ['lint', 'test', 'build', 'deno'] runs-on: ubuntu-latest env: YARN_ENABLE_SCRIPTS: false steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: 'lts/*' - uses: denoland/setup-deno@v1 with: deno-version: v1.42.x - name: ${{ matrix.step }} if: always() continue-on-error: true run: | yarn install --immutable if [ "${{ matrix.step }}" != "lint" ]; then ./scripts/install-build-deps.sh fi yarn polkadot-dev-deno-map yarn ${{ matrix.step }}