Bump js-yaml from 3.14.1 to 3.14.2 #334
This file contains hidden or 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: Check | |
| on: | |
| pull_request: | |
| types: [assigned, opened, synchronize, reopened] | |
| jobs: | |
| test: | |
| name: Check Repo | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@master | |
| - name: Setup Node | |
| uses: actions/setup-node@master | |
| with: | |
| node-version: 'lts/*' | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Build | |
| run: npm run build # Build here just to check it completes w/o error | |
| - name: Lint | |
| run: npm run lint |