Skip to content

Bump tough-cookie and node-sass #893

Bump tough-cookie and node-sass

Bump tough-cookie and node-sass #893

Workflow file for this run

name: CI
on: [push, pull_request]
env:
CI: true
NODE: 12.x
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: "${{ env.NODE }}"
- name: Set up npm cache
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
${{ runner.OS }}-node-v${{ env.NODE }}-
- run: java -version
- name: Install npm dependencies
run: npm ci
- name: Build the files
run: npm run build
- name: Run tests
run: npm test
- name: Run vnu.jar tests
run: npm run htmllint