Skip to content

Commit 4db6058

Browse files
upgrade node version
1 parent 9b788a6 commit 4db6058

File tree

4 files changed

+5470
-1017
lines changed

4 files changed

+5470
-1017
lines changed

.github/workflows/test.yml

+18
Original file line numberDiff line numberDiff line change
@@ -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

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ outputs:
1414
created:
1515
description: 'Boolean value representing whether or not a new branch was created.'
1616
runs:
17-
using: 'node12'
17+
using: 'node16'
1818
main: 'dist/index.js'

0 commit comments

Comments
 (0)