Skip to content

[Snyk] Security upgrade gulp from 4.0.2 to 5.0.0 #1551

[Snyk] Security upgrade gulp from 4.0.2 to 5.0.0

[Snyk] Security upgrade gulp from 4.0.2 to 5.0.0 #1551

Workflow file for this run

name: Test
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v3
id: node-cache
with:
path: ~/.npm
key: ${{ runner.os }}-${{ matrix.node-version }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-${{ matrix.node-version }}-node-
- run: npm ci
- run: npm run build
- run: npm test