Skip to content

[Snyk] Fix for 19 vulnerabilities #109

[Snyk] Fix for 19 vulnerabilities

[Snyk] Fix for 19 vulnerabilities #109

name: "Pull Request"
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
pull_request
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "continuous-integration"
continuous-integration:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Create PR labels
uses: actions/labeler@v2
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Checkout sources
uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v2.1.5
with:
node-version: '12.x'
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: |
npm install
npm run lint
npm run build