From d374dd8aee73381220fb24ce39e0d552deff44cc Mon Sep 17 00:00:00 2001 From: Yuta Saito Date: Sat, 9 Jul 2022 15:58:55 +0000 Subject: [PATCH] add test ci workflow --- .github/workflows/test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..bbbce43 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,20 @@ +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + test: + name: Test + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v3 + with: + submodules: true + + - run: npm install + - run: npm test +