Skip to content

[Snyk] Fix for 1 vulnerabilities #264

[Snyk] Fix for 1 vulnerabilities

[Snyk] Fix for 1 vulnerabilities #264

Workflow file for this run

name: Outpost ci
on: [push, pull_request]
jobs:
main:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest] #someday - , windows-latest]
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v2
- uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ matrix.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ matrix.os }}-build-${{ env.cache-name }}-
${{ matrix.os }}-build-
${{ matrix.os }}-
- uses: actions/setup-node@v2
with:
node-version: '16'
- run: npm ci
- run: npm run build
- run: npm run test
# - run: yarn format:check