Skip to content

Lock file maintenance non-breaking #428

Lock file maintenance non-breaking

Lock file maintenance non-breaking #428

---
name: Quality Assurance
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
tsc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
- run: npm install --no-audit --no-fund --cache .npm
- run: npx tsc
- run: node src/index.js --help
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
- run: npm install --no-audit --no-fund --cache .npm
- run: npx eslint .
jest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
- run: npm ci --no-audit --no-fund
- run: npx tsc
- run: npm test