Skip to content

Feat: Added workflow #17

Feat: Added workflow

Feat: Added workflow #17

Workflow file for this run

name: "TestWorkflow"
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: change directory
run: cd packages/common
- name: Run tests
run: npm run test