-
-
Notifications
You must be signed in to change notification settings - Fork 1
151 lines (129 loc) · 3.52 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
name: CI
jobs:
install-deps:
if: github.repository == 'teknologi-pendidikan/pameran-karya'
name: Install dependencies
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 7
- name: Setup Node.js 16.x
uses: actions/[email protected]
with:
node-version: "16.x"
cache: 'pnpm'
- name: Install locked dependencies
run: pnpm install --frozen-lockfile
- name: Cache dependencies
uses: actions/cache@v1
id: cache-deps
with:
path: "."
key: ${{ github.sha }}
lint:
if: github.repository == 'teknologi-pendidikan/pameran-karya'
name: ESLint
runs-on: ubuntu-latest
needs: install-deps
steps:
- name: Restore cached dependencies
uses: actions/cache@v1
id: restore-deps
with:
path: "."
key: ${{ github.sha }}
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 7
- name: Setup Node.js 16.x
uses: actions/[email protected]
with:
node-version: "16.x"
cache: 'pnpm'
- name: Lint files
run: pnpm run lint
type-check:
if: github.repository == 'teknologi-pendidikan/pameran-karya'
name: Type check
runs-on: ubuntu-latest
needs: install-deps
steps:
- name: Restore cached dependencies
uses: actions/cache@v1
id: restore-deps
with:
path: "."
key: ${{ github.sha }}
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 7
- name: Setup Node.js 16.x
uses: actions/[email protected]
with:
node-version: "16.x"
cache: 'pnpm'
- name: Perform type checking
run: pnpm run tsc
# test:
# name: Unit and integration tests
# runs-on: ubuntu-latest
# needs: install-deps
# steps:
# - name: Restore cached dependencies
# uses: actions/cache@v1
# id: restore-deps
# with:
# path: "."
# key: ${{ github.sha }}
# - name: Setup Node.js 16.x
# uses: actions/[email protected]
# with:
# node-version: "16.x"
# cache: 'pnpm'
# - name: Run Jest
# run: pnpm run test
# env:
# CI: true
# - name: Upload code coverage reports to Codecov
# uses: codecov/codecov-action@v2
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# e2e:
# name: End-to-end tests
# runs-on: ubuntu-latest
# needs: install-deps
# steps:
# - name: Restore cached dependencies
# uses: actions/cache@v1
# id: restore-deps
# with:
# path: "."
# key: ${{ github.sha }}
# - name: Setup Node.js 16.x
# uses: actions/[email protected]
# with:
# node-version: "16.x"
# cache: 'pnpm'
# - name: Install Cypress
# run: pnpm add install
# - name: Run Cypress
# uses: cypress-io/github-action@v2
# with:
# record: true
# start: yarn dev
# wait-on: "http://localhost:3000"
# env:
# CI: true
# CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}