Skip to content

Merge pull request #316 from ottofeller/dependabot/npm_and_yarn/jsii-… #796

Merge pull request #316 from ottofeller/dependabot/npm_and_yarn/jsii-…

Merge pull request #316 from ottofeller/dependabot/npm_and_yarn/jsii-… #796

Workflow file for this run

# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen".
name: test
on:
push:
paths:
- src/**
- .projenrc.ts
- .github/workflows/test.yml
- package-lock.json
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: ottofeller/github-actions/npm-run@main
with:
node-version: 16
command: npm run lint
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: ottofeller/github-actions/npm-run@main
with:
node-version: 16
command: npm run test
typecheck:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: ottofeller/github-actions/npm-run@main
with:
node-version: 16
command: npm run typecheck
build:
needs:
- lint
- test
- typecheck
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: ottofeller/github-actions/npm-run@main
with:
node-version: 16
command: npm run build