generated from posva/vue-ts-lib
-
-
Notifications
You must be signed in to change notification settings - Fork 13
38 lines (36 loc) · 831 Bytes
/
test.yml
File metadata and controls
38 lines (36 loc) · 831 Bytes
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
name: Build source code and test it
on:
push:
branches:
- renovate/**
pull_request:
branches: [main]
jobs:
web:
runs-on: ubuntu-latest
name: Build code and test
steps:
- name: Check out
uses: actions/checkout@v6
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 22
- name: Install dependencies
id: install_code
run: bun install --frozen-lockfile
- name: Lint
id: lint_code
run: bun run lint
- name: Build
id: build_code
run: bun run build
- name: Build Ts
id: build_code_type
run: bun run build:dts
- name: Test
id: test_code
run: bun run test