Skip to content

Release staging

Release staging #264

Workflow file for this run

name: Automatic Review
on: [pull_request]
jobs:
pre-review:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.16.0'
cache: 'yarn'
- run: yarn install
- run: yarn danger ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}