From a28ed0ccd59d1d6c6b4546d77af7baa49c375459 Mon Sep 17 00:00:00 2001 From: yutachaos <18604471+yutachaos@users.noreply.github.com> Date: Sat, 10 Apr 2021 08:14:07 +0900 Subject: [PATCH] Added docker image push action --- .github/workflows/ci.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..e6683a5 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -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