Skip to content

build(deps): bump tough-cookie from 4.0.0 to 4.1.3 #53

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

build(deps): bump tough-cookie from 4.0.0 to 4.1.3 #53

Workflow file for this run

name: Validate
on:
pull_request:
branches:
- main
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies
run: npm ci
- name: Prettier
run: npm run prettier-ci
- name: Test
run: npm run test-ci
- name: Build
run: |
npm run build-browser
npm run build-tsc-cjs
npm run build-tsc-esm