build(deps): bump tough-cookie and verdaccio #1588
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ForgeRock Commit Check | |
on: | |
pull_request: | |
push: | |
branches-ignore: | |
# We don't want to check commits on develop or master | |
# because they will be merged, not the commits we write | |
- 'develop' | |
- 'master' | |
env: | |
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | |
NX_CLOUD_ENCRYPTION_KEY: ${{ secrets.NX_CLOUD_ENCRYPTION_KEY }} | |
jobs: | |
commit-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{github.event.pull_request.head.repo.full_name}} | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
id: cache | |
with: | |
node-version: '16.13.1' | |
cache: 'npm' | |
cache-dependency-path: '**/package-lock.json' | |
- name: npm install | |
run: npm ci | |
env: | |
DEBUG: pw:install | |
# PLAYWRIGHT_BROWSERS_PATH: 0 | |
PLAYWRIGHT_SKIP_BROWSERS_DOWNLOAD: 1 | |
- uses: wagoid/commitlint-github-action@v4 | |
env: | |
NODE_PATH: ${{ github.workspace }}/node_modules |