Skip to content

build(deps-dev): bump nuxt from 3.4.2 to 3.4.3 #10

build(deps-dev): bump nuxt from 3.4.2 to 3.4.3

build(deps-dev): bump nuxt from 3.4.2 to 3.4.3 #10

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, '[ci skip]')"
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
steps:
- name: Checkout 🛎
uses: actions/checkout@master
- name: Setup pnpm 🦾
uses: pnpm/action-setup@v2
with:
version: 8.3.1
- name: Setup node env 🏗
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
check-latest: true
cache: 'pnpm'
- name: Setup Nuxt application 🥾
run: |
cp .github/.env.src src/.env
- name: Install root + src dependencies 👨🏻‍💻
run: pnpm install
- name: Run linter 👀
run: pnpm lint
- name: Run type checking 📚
run: pnpm typecheck
#- name: Run tests 🧪
# run: pnpm test
- name: Build app 🖥
run: pnpm --dir src build