Skip to content

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

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

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

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
ci:
name: Lint and Test with Node.js ${{ matrix.node }} on ${{ matrix.os }}
strategy:
matrix:
node:
- 14
- 16
- 18
os:
- macos-latest
- windows-latest
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: pnpm
- name: Install Dependencies
run: pnpm i --frozen-lockfile
- name: Build, Lint and test
run: |
pnpm build
pnpm lint
pnpm test
env:
EFF_NO_LINK_RULES: true
PARSER_NO_WATCH: true