Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

Update dependency nuxt to v3.11.0 [skip netlify] #1747

Update dependency nuxt to v3.11.0 [skip netlify]

Update dependency nuxt to v3.11.0 [skip netlify] #1747

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js LTS
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run Lint
run: yarn lint:check
- name: Run Typing
run: yarn type
- name: Run Build
run: yarn build