generated from Uninen/vite-ts-tailwind-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (39 loc) · 866 Bytes
/
main.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
40
41
42
43
44
45
name: CI
on:
push:
branches:
- main
paths:
- 'src/**'
- 'tests/**'
- 'pnpm-lock.yaml'
- '.github/workflows/main.yml'
pull_request:
paths:
- 'src/**'
- 'tests/**'
- 'pnpm-lock.yaml'
- '.github/workflows/main.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
run_install: true
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'pnpm'
## Test
- name: Run component + unit tests
run: pnpm test:ci
# - name: Run e2e tests
# run: |
# yarn test:ci-e2e
# yarn coverage