Skip to content

chore: change changelog commit template to modified conventionalcommits #11

chore: change changelog commit template to modified conventionalcommits

chore: change changelog commit template to modified conventionalcommits #11

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
types: [opened, reopened, synchronize]
permissions:
contents: read
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 # https://github.com/actions/checkout
- uses: actions/setup-node@v4 # https://github.com/actions/setup-node
with:
node-version-file: .nvmrc
- uses: actions/cache@v3 # https://github.com/actions/cache
id: node-modules-cache
with:
path: |
**/node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }}
- if: steps.node-modules-cache.outputs.cache-hit != 'true'
run: npm clean-install
- run: npm audit signatures
- run: npm run lint:lockfile
- run: npm run lint:package
- run: npm run lint:code
- run: npm run test