-
Notifications
You must be signed in to change notification settings - Fork 3
43 lines (36 loc) · 876 Bytes
/
Copy pathdevelop.yml
File metadata and controls
43 lines (36 loc) · 876 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
39
40
41
42
name: Development
run-name: Compilation & Quality Checks
on:
push:
branches:
- develop
pull_request:
types:
- opened
branches:
- '*'
- '!develop'
jobs:
build-and-test:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build --workspace=@tomplum/react-git-log
- name: Run Unit Tests
env:
TZ: UTC
run: npm run test:unit:ci --workspace=@tomplum/react-git-log
- name: Run Integration Tests
env:
TZ: UTC
run: npm run test:integration:ci --workspace=@tomplum/react-git-log