Skip to content

ci: override conventional-changelog-conventionalcommits to >=v8 #19

ci: override conventional-changelog-conventionalcommits to >=v8

ci: override conventional-changelog-conventionalcommits to >=v8 #19

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
types: [opened, reopened, synchronize]
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@v4 # 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:browser
- run: npm run test:node