Bump js-yaml from 3.14.0 to 3.14.2 #212
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: Pull Requests | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - README.md | |
| - local/** | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| env: | |
| SLACK_WEBHOOK_URL: ${{secrets.SLACK_WEBHOOK_URL}} | |
| strategy: | |
| matrix: | |
| node-version: [12.x] | |
| steps: | |
| - name: Notify Slack of Start | |
| uses: act10ns/slack@v1 | |
| with: | |
| status: starting | |
| if: always() | |
| - name: Git checkout | |
| id: git_checkout | |
| uses: actions/checkout@v2 | |
| - name: Use node.js ${{ matrix.node-version }} | |
| id: setup_node | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm install | |
| id: npm_install | |
| - name: Cache node modules | |
| id: cache_node_modules | |
| uses: actions/cache@v1 | |
| with: | |
| path: ~/.npm | |
| key: v1-npm-deps-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: v1-npm-deps- | |
| - name: Run Tests | |
| id: npm_test | |
| run: npm test --watchAll=false | |
| - name: Lint Build | |
| id: lint | |
| run: npm run build | |
| - name: Notify Slack of Result | |
| id: notify_slack | |
| uses: act10ns/slack@v1 | |
| with: | |
| status: ${{ job.status }} | |
| steps: ${{ toJson(steps) }} | |
| if: always() |