Skip to content

build(deps): Bump tough-cookie from 4.1.2 to 4.1.3 #4

build(deps): Bump tough-cookie from 4.1.2 to 4.1.3

build(deps): Bump tough-cookie from 4.1.2 to 4.1.3 #4

Workflow file for this run

# https://github.com/actions/starter-workflows/blob/main/ci/node.js.yml
name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x ]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
# Demo - ignore non-zero exit codes for "test".
- name: Audit URLs using jest-axe
run: npm test || true
# https://github.com/treosh/lighthouse-ci-action
- name: Audit URLs using Lighthouse
uses: treosh/lighthouse-ci-action@v9
with:
configPath: './lighthouserc.js'
# urls: |
# https://example.com/
# https://example.com/blog
# budgetPath: ./budget.json # test performance budgets
uploadArtifacts: true # save results as an action artifact
temporaryPublicStorage: true # upload lighthouse report to the temporary storage
# End.