Skip to content

chore(deps): bump tough-cookie from 4.0.0 to 4.1.3 #81

chore(deps): bump tough-cookie from 4.0.0 to 4.1.3

chore(deps): bump tough-cookie from 4.0.0 to 4.1.3 #81

Workflow file for this run

name: Test Coveralls
on: [push, pull_request]
jobs:
run:
name: Node.js ${{ matrix.node }} @ ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node: [14]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Set Node.js version
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: node --version
- run: yarn --version
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test
- name: Run Coveralls
# `master` should be a tag but they don't have one
uses: coverallsapp/github-action@master
if: startsWith(matrix.os, 'ubuntu') && matrix.node == 12
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"