-
Notifications
You must be signed in to change notification settings - Fork 167
45 lines (35 loc) · 914 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]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.11.1
- name: Setup git config
run: |
git config user.name "Sadanand Pai"
git config user.email "sadypai@gmail.com"
- name: NPM installation
run: npm install
- name: Lint check
run: npm run lint
- name: Unit & E2E testing
run: |
npm test
npm run e2e:test
- name: Build setup
run: |
rm -rf dist
npm run build
git add docs -f
- name: Commit & push
run:
git diff --staged --quiet || (git commit -m "build files - github
action" && git push)