-
Notifications
You must be signed in to change notification settings - Fork 1
64 lines (55 loc) · 1.65 KB
/
example.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
# Example workflow for github-actions-runner
name: Example
env:
NODE_VERSION: 20
on:
workflow_dispatch:
inputs:
## !NOTE: This input is required to identify the workflow run
id:
type: 'string'
description: 'Unique identifier for the workflow run. Needed for github-actions-runner to identify the run.'
## !NOTE: This name is required to identify the workflow run
run-name: ${{github.workflow}} [ID:${{ inputs.id }}]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# Number of commits to fetch. 0 indicates all history.
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 8
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: pnpm
- name: Run bash commands
shell: bash
run: |
ls -alt
# Install deps
pnpm install
# Linting package
pnpm lint
# Testing package
pnpm test
# Building package artifact
pnpm pack && mv adguard-github-actions-runner-*.tgz github-actions-runner.tgz
# Show that secrets are encoded
echo KEY: ${secrets.KEY}
- name: Save archived package
uses: actions/upload-artifact@v4
with:
name: github-actions-runner.tgz
path: ./github-actions-runner.tgz
- name: Save build.txt
uses: actions/upload-artifact@v4
with:
name: build.txt
path: ./dist/build.txt