blob: 522eaf01c426dd23c0996115644be9b4872dc5fc (
about) (
plain)
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
|
---
# File : ci.yml
name: 'ci'
on:
push:
branches:
- '**'
- '!main'
defaults:
run:
shell: 'bash'
jobs:
changes:
runs-on: 'ubuntu-latest'
outputs:
ts: ${{ steps.filter.outputs.ts }}
steps:
- uses: actions/checkout@v2
- name: '[check if build necessary]'
uses: dorny/paths-filter@v2
id: filter
with:
filters: |
ts:
- '**.ts'
- '**.tsx'
- '**.json'
lint-test-build:
name: '[ci|lint-test-build]'
runs-on: 'ubuntu-latest'
needs: changes
if: ${{ needs.changes.outputs.ts == 'true' }}
steps:
- name: '[checkout] ${{ github.repository }} project'
uses: 'actions/checkout@v2'
with:
repository: '${{ github.repository }}'
- name: '[setup node]'
uses: 'actions/setup-node@v2'
with:
node-version: '16'
- name: '[lint]'
run: |
echo TBA some linting
- name: '[test]'
run: |
echo TBA some testing
- name: '[build]'
run: |
git config --global url."https://github.com/".insteadOf ssh://[email protected]/
git config --global url."https://".insteadOf git://
git config --global url."https://".insteadOf ssh://
npm install
npm run build
npm run export
...
# End of ci.yml
|