Added docker image push action

This commit is contained in:
yutachaos 2021-04-10 08:14:07 +09:00
parent c86fd9a89b
commit a28ed0ccd5

13
.github/workflows/ci.yaml vendored Normal file
View File

@ -0,0 +1,13 @@
name: CI
on: [push]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v1
- name: Npm install
run: npm run install-tests
- name: Execute test
run: npm run test