Skip to content

chore(deps-dev): bump @types/node from 18.16.3 to 20.7.1 #2722

chore(deps-dev): bump @types/node from 18.16.3 to 20.7.1

chore(deps-dev): bump @types/node from 18.16.3 to 20.7.1 #2722

Workflow file for this run

name: "Check for semantic PR"
on:
pull_request:
types:
- opened
- edited
- synchronize
jobs:
commitlint: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: sed -i -E "s/(docker:.*)/Dockerfile/" ./action.yml
- uses: ./
with:
config_file: 'commitlint.config.js'
create_comment: 'true'
commitlint-pulling-from-docker-hub:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- uses: actions/cache@v2
with:
path: |
~/.npm
**/node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- uses: ./
with:
config_file: 'commitlint.config.js'
create_comment: 'true'
env:
NODE_PATH: ${{ github.workspace }}/node_modules