generated from posva/vue-ts-lib
-
-
Notifications
You must be signed in to change notification settings - Fork 12
39 lines (37 loc) · 839 Bytes
/
test.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: 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@v3
- uses: pnpm/action-setup@v2
with:
version: 7
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Install dependencies
id: install_code
run: pnpm install --frozen-lockfile
- name: Lint
id: lint_code
run: pnpm lint
- name: Build
id: build_code
run: pnpm build
- name: Build Ts
id: build_code_type
run: pnpm build:dts
- name: Test
id: test_code
run: pnpm test