From 9a64eca1a1669618d9b7125c5710a4b81b5ae438 Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Wed, 2 Mar 2022 16:21:48 +0900 Subject: [PATCH] create test action --- .github/workflows/test.yml | 15 +++++++++++++++ 1 file changed, 15 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..201dfc7 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,15 @@ +name: test +on: + push: + branches-ignore: [main] +jobs: + main: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: { node-version: lts/*, cache: yarn } + - name: Build + run: | + yarn install + yarn build