build(deps-dev): bump braces from 3.0.2 to 3.0.3 #37
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: PR Unit Testing | |
on: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Triggers the workflow on pull request events | |
pull_request: | |
branches-ignore: | |
- main | |
- 'release/**' | |
env: | |
DEFAULT_NODE_VERSION: 14 | |
jobs: | |
tests: | |
name: Unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
# https://github.com/marketplace/actions/setup-node-js-environment | |
with: | |
node-version: ${{ env.DEFAULT_NODE_VERSION }} | |
- name: Cache node_modules | |
uses: actions/cache@v2 | |
id: cache-nodemodules | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-${{ env.DEFAULT_NODE_VERSION }}-nodemodules-${{ hashFiles('**/package-lock.json') }} | |
- name: Install dependencies | |
if: ${{ steps.cache-nodemodules.outputs.cache-hit != 'true' }} | |
run: npm ci | |
- name: Unit tests | |
run: npm test | |