Skip to content

build(deps-dev): bump chai from 4.3.4 to 4.3.8 #289

build(deps-dev): bump chai from 4.3.4 to 4.3.8

build(deps-dev): bump chai from 4.3.4 to 4.3.8 #289

Workflow file for this run

name: 'CI'
on:
push:
branches:
- master
pull_request: {}
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }} and setup registry
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
# registry-url: https://npm.pkg.github.com/
- name: Install dependencies
run: npm ci
# env:
# NODE_AUTH_TOKEN: ${{ secrets.GPR_TOKEN }}
- name: Run tests
run: npm test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 12 and setup registry
uses: actions/setup-node@v1
with:
node-version: 12.x
# registry-url: https://npm.pkg.github.com/
- name: Install dependencies
run: npm ci
# env:
# NODE_AUTH_TOKEN: ${{ secrets.GPR_TOKEN }}
- name: Lint
run: npm run lint:js