Async functions #168
21
.github/workflows/package_test.yml
vendored
21
.github/workflows/package_test.yml
vendored
@ -1,5 +1,5 @@
|
|||||||
name: Test - The Bds Maneger Core
|
name: Test - The Bds Maneger Core
|
||||||
on: [push, pull_request]
|
on: [pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Test:
|
Test:
|
||||||
@ -16,3 +16,22 @@ jobs:
|
|||||||
cache: 'npm'
|
cache: 'npm'
|
||||||
- run: npm install -d --no-save
|
- run: npm install -d --no-save
|
||||||
- run: npm test
|
- run: npm test
|
||||||
|
|
||||||
|
Test_Docker:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v1
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v1
|
||||||
|
|
||||||
|
- name: checkout
|
||||||
|
uses: actions/checkout@master
|
||||||
|
|
||||||
|
- name: Build Docker Image
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
target: bdscore
|
||||||
|
tags: coretest:latest
|
||||||
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
||||||
|
Reference in New Issue
Block a user