-
Notifications
You must be signed in to change notification settings - Fork 6
146 lines (121 loc) · 3.78 KB
/
tests.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
name: tests
on:
push:
branches: [ master, main ]
tags-ignore: [ '**' ]
paths-ignore: [ '**.md' ]
pull_request:
paths-ignore: [ '**.md' ]
jobs:
gitleaks:
name: Gitleaks
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with: { fetch-depth: 0 }
- name: Check for GitLeaks
uses: gacts/gitleaks@v1 # Action page: <https://github.com/gacts/gitleaks>
eslint:
name: Run eslint
runs-on: ubuntu-20.04
env: { FORCE_COLOR: 'true' }
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with: { node-version: '16' }
- uses: actions/cache@v3
id: yarn-cache
with:
path: '**/node_modules'
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-yarn-
- if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile --no-progress --non-interactive
- run: yarn lint
dist-built:
name: Check distributive built state
runs-on: ubuntu-20.04
outputs:
dist-changed: ${{ steps.state.outputs.changed }}
env: { FORCE_COLOR: 'true' }
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with: { node-version: '16' }
- uses: actions/cache@v3
id: yarn-cache
with:
path: '**/node_modules'
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-yarn-
- if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile --no-progress --non-interactive
- run: yarn build
- uses: actions/upload-artifact@v3
with: { name: dist, path: ./dist/, retention-days: 1 }
- id: state
run: echo "changed=`git diff --diff-filter=ACMUXTR --name-only | grep dist/ > /dev/null && echo 'true' || echo 'false'`" >> $GITHUB_OUTPUT
commit-and-push-fresh-dist:
name: Commit and push fresh distributive
needs: [ dist-built ]
if: ${{ needs.dist-built.outputs.dist-changed == 'true' }}
runs-on: ubuntu-20.04
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with: { name: dist, path: ./dist/ }
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Automatic distributive rebuild
run-this-action:
name: Run action
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Run this action
uses: ./
with:
run: echo "First"
"(can be multiline)"
post: |
echo "First post"
echo "(can run multiply commands)"
- name: Post only
uses: ./
with:
post: echo "Second post"
- name: Execute without shell
uses: ./
with:
shell: ''
run: echo foo
post: echo bar
- name: Environment variables
uses: ./
env: { ENV_VAR: 'value123' }
with:
run: echo "$ENV_VAR" > ./test_env_var.txt
post: if grep -q value123 ./test_env_var.txt; then echo "Test passed"; else exit 1; fi
- name: Multiline with line breaks
uses: ./
with:
run: |
ls \
-la \
/tmp /opt \
/bin
cat /etc/passwd
post: echo "Foo"
echo "bar"
echo baz \ blah \
boom
- name: Change post shell
uses: ./
with:
run: if [ "$0" = "/usr/bin/sh" ]; then echo "Test passed"; else exit 1; fi
shell: sh
post: if [ "$0" = "/usr/bin/bash" ]; then echo "Test passed"; else exit 1; fi
post-shell: bash