polkadot-js/ts

View on GitHub
.github/workflows/pr-any.yml

Summary

Maintainability
Test Coverage
name: PR
on: [pull_request]
 
jobs:
pr:
strategy:
matrix:
step: ['lint', 'test', 'build']
name: ${{ matrix.step }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: ${{ matrix.step }}
run: |
yarn install --immutable | grep -v 'YN0013'
yarn ${{ matrix.step }}