Skip to content

Remove prompt on request #69

Remove prompt on request

Remove prompt on request #69

Workflow file for this run

name: Test Pipeline for opened PR
on:
pull_request:
branches: [ main, develop ] #put your branches which you want to execute test pipeline
types: [ opened, ready_for_review ]
concurrency:
group: ${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
run_test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 16 ]
name: Run Test on Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: yarn install --immutable --immutable-cache --check-cache
- run: yarn test