ci(GA): add test:artifact job (#6562)

This commit is contained in:
Tim Lai
2020-10-26 12:02:25 -07:00
committed by GitHub
parent c9420960c7
commit fca93ea914

View File

@@ -30,6 +30,24 @@ jobs:
env:
CI: true
artifact-bundle:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build and Run all artifact tests
run: npm run test:artifact
release:
if: contains(github.ref, 'master')
runs-on: ubuntu-latest