build(deps-dev): bump minimist from 1.2.5 to 1.2.8 #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Danger JS | |
on: [pull_request] | |
jobs: | |
pr-checks: | |
runs-on: windows-2022 | |
strategy: | |
matrix: | |
node: [12, 14, 16] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: pnpm/[email protected] | |
with: | |
version: latest | |
- name: Use NodeJS ${{ matrix.node }} & Cache | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: "pnpm" | |
- name: Install Dependencies | |
run: pnpm i --only=dev | |
- name: Danger Checks | |
run: pnpm exec danger ci | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |