We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b788a6 commit 4db6058Copy full SHA for 4db6058
.github/workflows/test.yml
@@ -0,0 +1,18 @@
1
+name: 'Test Action works'
2
+on: [push]
3
+
4
+jobs:
5
+ create-branch:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v1
9
10
+ - name: "npm ci"
11
+ run: npm ci
12
13
+ - name: "npm run build"
14
+ run: npm run build
15
16
+ - uses: ./
17
+ env:
18
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
action.yml
@@ -14,5 +14,5 @@ outputs:
created:
description: 'Boolean value representing whether or not a new branch was created.'
runs:
- using: 'node12'
+ using: 'node16'
main: 'dist/index.js'
0 commit comments