From 1b3a0ae68eb87db4b6b9fb71968b66e22c76e3e8 Mon Sep 17 00:00:00 2001 From: Joost De Cock Date: Sat, 14 Mar 2020 16:11:02 +0100 Subject: [PATCH] chore: Added debug workflow --- .github/workflows/debug.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/debug.yml diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml new file mode 100644 index 00000000000..66121cceaa1 --- /dev/null +++ b/.github/workflows/debug.yml @@ -0,0 +1,30 @@ +name: Unit tests - Aaron (debug) + +on: push + +jobs: + test: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [12.x] + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + - name: Setup Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - name: Change directory + run: cd packages/aaron + - name: Install dependencies + env: + CI: true + run: npm ci + - name: Build pattern + run: npm run build --if-present + - name: Run pattern unit tests + run: npm testonly