You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
547 B
27 lines
547 B
name: Tests |
|
|
|
on: |
|
push: |
|
branches: |
|
- master |
|
- development |
|
|
|
jobs: |
|
test: |
|
name: Run tests |
|
runs-on: ubuntu-latest |
|
steps: |
|
- name: Check out monorepo |
|
uses: actions/checkout@v1 |
|
- name: Install Node 12 |
|
uses: actions/setup-node@v1 |
|
with: |
|
node-version: '12.x' |
|
- name: Install project dependencies |
|
run: | |
|
npm install -g yarn |
|
yarn install |
|
- name: Compile subpackages |
|
run: yarn compile |
|
- name: Execute tests |
|
run: yarn test
|
|
|