Skip to content

[Snyk] Security upgrade ejs from 3.1.8 to 3.1.10 #9

[Snyk] Security upgrade ejs from 3.1.8 to 3.1.10

[Snyk] Security upgrade ejs from 3.1.8 to 3.1.10 #9

Workflow file for this run

name: CI
on:
push:
branches: ['**']
pull_request:
branches: ['master']
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest', 'windows-latest']
node: [8,10,12,14,16]
name: Testing Node ${{ matrix.node }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm install
- run: npm test