-
Notifications
You must be signed in to change notification settings - Fork 1
57 lines (48 loc) · 1.32 KB
/
tests.yaml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Test, lint and check commit
on:
push:
branches: "main"
pull_request:
paths:
- "**"
jobs:
unit_test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install asdf
uses: asdf-vm/actions/setup@v3
- name: asdf cache
id: asdf-cache
uses: actions/cache@v4
with:
path: ~/.asdf/
key: ${{ runner.os }}-${{ hashFiles('**/.tool-versions') }}
- name: Install CD tools from .tool-versions
if: steps.asdf-cache.outputs.cache-hit != 'true'
uses: asdf-vm/actions/install@v3
- name: Install
run: |-
bun install --frozen-lockfile
bun run build:libs
bun run sync
- name: Test and lint ds-svelte-community
run: |-
cd packages/ds-svelte-community
bun run test
bun run lint
bun run check
- name: Test and lint ds-svelte-community-preprocess-svelte
run: |-
cd packages/ds-svelte-community-preprocess-svelte
bun run test
bun run lint
bun run check
- name: Test and lint vite-plugin-svelte-docs
run: |-
cd packages/vite-plugin-svelte-docs
bun run test
bun run lint
bun run check