From 1b077bb6170f0a4bb8c445a815156500c1ea2009 Mon Sep 17 00:00:00 2001 From: Elio Bischof Date: Tue, 6 Jun 2023 11:15:37 +0200 Subject: [PATCH] chore: test in pipeline --- .github/workflows/test.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 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 00000000000..cbdee36d20b --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,27 @@ +name: Test +on: + push: + branches: + - main + - setup-unit-integration-tests +concurrency: ${{ github.workflow }}-${{ github.ref }} +jobs: + test: + name: Test + runs-on: ubuntu-latest + steps: + - name: Checkout Repo + uses: actions/checkout@v2 + - name: Setup pnpm 7 + uses: pnpm/action-setup@v2 + with: + version: 7 + - name: Setup Node.js 16.x + uses: actions/setup-node@v2 + with: + node-version: 16.x + - name: Install Dependencies + run: pnpm i + - name: Test + id: test + run: pnpm test