Skip to content

feat: change to events-based mechanism instead of args-based, allow introCode to show welcome code #20

feat: change to events-based mechanism instead of args-based, allow introCode to show welcome code

feat: change to events-based mechanism instead of args-based, allow introCode to show welcome code #20

Workflow file for this run

name: PR Checks
on:
pull_request:
types: [opened, synchronize]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- run: npm ci
- run: npm run lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- run: npm ci
- run: npm run build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- run: npm ci
- run: npm run test