Skip to content

Bump tough-cookie from 4.1.2 to 4.1.3 #56

Bump tough-cookie from 4.1.2 to 4.1.3

Bump tough-cookie from 4.1.2 to 4.1.3 #56

Workflow file for this run

name: Node CI
on:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['16', '18']
steps:
- uses: actions/checkout@v3
- name: Set up Node ${{ matrix.ruby-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build Typescript
run: npm run build
- name: Run tests
run: npm test