Skip to content

Merge pull request #1 from joris-gallot/feat/cli-command-init #15

Merge pull request #1 from joris-gallot/feat/cli-command-init

Merge pull request #1 from joris-gallot/feat/cli-command-init #15

Workflow file for this run

name: 🔨
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tsc_and_lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Use pnpm
uses: pnpm/[email protected]
with:
package_json_file: package.json
- name: Install
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm typecheck
- name: Lint
run: pnpm lint