Skip to content

Bump vm2 from 3.9.14 to 3.9.18 #49

Bump vm2 from 3.9.14 to 3.9.18

Bump vm2 from 3.9.14 to 3.9.18 #49

Workflow file for this run

name: Build
on: [ push, pull_request ]
jobs:
lint-and-test:
name: 'Building, Linting and Unit Tests'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Cache node_modules
id: cache-node-modules
uses: actions/cache@v2
with:
path: ./node_modules
key: node_modules-${{ hashFiles('./package-lock.json') }}
- name: Upgrade NPM
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: npm install -g npm
- name: Install npm dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: npm ci --ignore-scripts
- run: npm run lint
- run: npm run test
- run: npm run build