-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (47 loc) · 1.04 KB
/
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
46
47
---
name: CI
on:
push:
branches:
- main
pull_request:
types:
- opened
- review_requested
- reopened
- synchronize
- auto_merge_enabled
branches:
- main
jobs:
validate_contribution:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: lts/*
check-latest: true
- name: Print versions
run: |
git --version
node --version
npm --version
- name: Install dependencies
run: npm install
- name: Push Commitlint
if: github.event_name == 'push'
run: npm run commitlint
- name: Pull Request Commitlint
env:
TITLE: ${{ github.event.pull_request.title }}
if: github.event_name == 'pull_request'
run: npx commitlint -- $TITLE
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test