mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-22 21:58:02 +00:00
c0393bcc7c
* Bump GH actions * Rewrite
17 lines
336 B
YAML
17 lines
336 B
YAML
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 }}
|