Skip to content

chore(deps): bump tough-cookie from 4.1.2 to 4.1.3 (#16) #35

chore(deps): bump tough-cookie from 4.1.2 to 4.1.3 (#16)

chore(deps): bump tough-cookie from 4.1.2 to 4.1.3 (#16) #35

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16, 18, latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Check cache node_modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-${{ matrix.node-version }}-
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test:ci
- name: Run linter
run: npm run lint
- name: Run type checker
run: npm run typecheck
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: node-${{ matrix.node }}
parallel: true
finish:
runs-on: ubuntu-latest
needs: build
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true