From b8e5ff4583733b82779e99de9133b2a7832f6cff Mon Sep 17 00:00:00 2001 From: Lipis Date: Sat, 23 Oct 2021 12:57:45 +0300 Subject: [PATCH] Add test action (#865) --- .github/workflows/test.yml | 17 +++++++++++++++++ 1 file changed, 17 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 00000000..14de9536 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,17 @@ +name: Tests + +on: pull_request + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Setup Node.js 14.x + uses: actions/setup-node@v2 + with: + node-version: 14.x + - name: Install and test + run: | + yarn --frozen-lockfile + yarn test