Skip to content

Bump tough-cookie from 4.1.2 to 4.1.3 in /examples/react_advanced_demo #192

Bump tough-cookie from 4.1.2 to 4.1.3 in /examples/react_advanced_demo

Bump tough-cookie from 4.1.2 to 4.1.3 in /examples/react_advanced_demo #192

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run test
env:
CI: true
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
- run: npm ci
- run: npm run lint
env:
CI: true