feature(docker) add support of multi-arch builds (#291)

This commit is contained in:
Timo Knapp 2021-01-19 12:05:39 +01:00 committed by coderaiser
parent 11cc63adcd
commit 99b93e760a
8 changed files with 104 additions and 255 deletions

View file

@ -4,34 +4,32 @@ on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: install
run: |
npm install
- name: lint
run: |
npm run lint
- name: build
run: |
npm run build
npm test
- name: test
run: |
npm test
- uses: actions/checkout@master
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: coverage
run: |
npm run coverage
- name: install
run: |
npm install
- name: lint
run: |
npm run lint
- name: build
run: |
npm run build
npm test
- name: test
run: |
npm test
- name: coverage
run: |
npm run coverage