-
-
Notifications
You must be signed in to change notification settings - Fork 22
39 lines (34 loc) · 886 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: ci
on:
push:
branches:
- '**'
paths-ignore:
- 'docs/**'
# We don't need to test tags
tags-ignore:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm -C nuxt run dev:prepare
- run: pnpm run build
- run: pnpm run lint
- run: pnpm run test
- run: pnpm run test:types
- run: pnpm run size
- run: pnpm run build:plugins
# avoid updating deps that do not build docs
# TODO: move to a different job with a different filter
- run: pnpm run docs:build
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}