Skip to content

ci(deps): bump the all-the-things group with 3 updates (#37) #78

ci(deps): bump the all-the-things group with 3 updates (#37)

ci(deps): bump the all-the-things group with 3 updates (#37) #78

Workflow file for this run

name: linting & test coverage
on:
push:
branches:
- main
pull_request:
env:
CI: true
defaults:
run:
shell: bash
jobs:
check:
strategy:
fail-fast: false
matrix:
node-version:
- 18.x
- 21.x
platform:
- ubuntu-latest
runs-on: ${{matrix.platform}}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{matrix.node-version}}
- run: npm install
- run: npm run build
- run: npm run lint
if: matrix.platform == 'ubuntu-latest' && matrix.node-version == '20.x'
- run: npm run depcruise
- run: npm test