Skip to content

chore: add typechecking on pre-commit #21 #7

chore: add typechecking on pre-commit #21

chore: add typechecking on pre-commit #21 #7

Workflow file for this run

name: Continuous Integration
on: push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Install dependencies and Build app
runs-on: ubuntu-latest
steps:
- uses: actions/checkout
- run: corepack enable
- name: Set Node.js 18.20.1
uses: actions/setup-node
with:
node-version: 18.20.1
- name: Run install
uses: borales/actions-yarn
with:
cmd: install
- name: Prepare Nuxt
uses: borales/actions-yarn
with:
cmd: prepare
- name: Typecheck
uses: borales/actions-yarn
with:
cmd: typecheck
- name: Lint
uses: borales/actions-yarn
with:
cmd: lint
- name: Build
uses: borales/actions-yarn
with:
cmd: build