chore: Added debug workflow
This commit is contained in:
parent
1999485ba5
commit
1b3a0ae68e
1 changed files with 30 additions and 0 deletions
30
.github/workflows/debug.yml
vendored
Normal file
30
.github/workflows/debug.yml
vendored
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue