Skip to content

feat: create ci action #21 #4

feat: create ci action #21

feat: create ci action #21 #4

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@v3
- run: corepack enable
- name: Set Node.js 18.20.1
uses: actions/setup-node@v3
with:
node-version: 18.20.1
- name: Run install
uses: borales/actions-yarn@v4
with:
cmd: install
- name: Prepare Nuxt
uses: borales/actions-yarn@v4
with:
cmd: prepare
- name: Typecheck
uses: borales/actions-yarn@v4
with:
cmd: typecheck
- name: Lint
uses: borales/actions-yarn@v4
with:
cmd: lint