generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (40 loc) · 997 Bytes
/
test.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
name: "units-test"
on:
pull_request:
push:
jobs:
# unit tests
units:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: npm ci
- run: npm test
# test action works running with actions/checkout@v1
test-v1:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- id: git_metadata
uses: ./
# example usage
- env:
version: ${{steps.git_metadata.outputs.git_version}}
run: |-
echo "This is my version: ${version}"
# test action works running with actions/checkout@v2
test-v2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
# Required to get the full history for git_metadata
fetch-depth: 0
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- id: git_metadata
uses: ./
# example usage
- env:
version: ${{steps.git_metadata.outputs.git_version}}
run: |-
echo "This is my version: ${version}"