1
0
Fork 0

chore: Added debug workflow

This commit is contained in:
Joost De Cock 2020-03-14 16:11:02 +01:00
parent 1999485ba5
commit 1b3a0ae68e

30
.github/workflows/debug.yml vendored Normal file
View file

@ -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