Browse Source

ci(GA): add release job step (#6558)

bubble
Tim Lai 3 years ago
committed by GitHub
parent
commit
c9420960c7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions
  1. +12
    -0
      .github/workflows/nodejs.yml

+ 12
- 0
.github/workflows/nodejs.yml View File

@@ -29,3 +29,15 @@ jobs:
run: npm test
env:
CI: true

release:
if: contains(github.ref, 'master')
runs-on: ubuntu-latest
needs: [build]

steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 14.x

Loading…
Cancel
Save