Skip to content

Bump tough-cookie from 4.1.2 to 4.1.3 #60

Bump tough-cookie from 4.1.2 to 4.1.3

Bump tough-cookie from 4.1.2 to 4.1.3 #60

Workflow file for this run

# Node.js
# Build a general Node.js project with npm.
# Add steps that analyze code, save build artifacts, deploy, and more:
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: install
run: npm ci
- name: lint
run: npm run lint
- name: build
run: npm run build
- name: test
run: npm run test