chore: simplify .github workflow

This commit is contained in:
Roman Hotsiy 2020-05-25 16:49:00 +03:00
parent c69f6de4c9
commit 5cf4d2aada
No known key found for this signature in database
GPG Key ID: 5CB7B3ACABA57CB0

View File

@ -3,18 +3,10 @@ name: Unit Tests
on: [push] on: [push]
jobs: jobs:
build: build-and-unit:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }} - run: npm install
uses: actions/setup-node@v1 - run: npm run bundle
with: - run: npm test
node-version: 10.x
- name: npm install, build, and test
run: |
npm install
npm run bundle
npm test