Segregation cleanup 1 #30
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
name: CI | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "18" | |
- name: Install Dependencies | |
run: | | |
yarn --cwd eslint-config-maasglobal-ts | |
yarn --cwd maasglobal-prelude-ts | |
yarn --cwd maasglobal-template-ts | |
yarn --cwd maasglobal-guide-ts | |
- name: Run Tests | |
run: | | |
yarn --cwd eslint-config-maasglobal-ts ci | |
yarn --cwd maasglobal-prelude-ts ci | |
yarn --cwd maasglobal-template-ts ci | |
yarn --cwd maasglobal-guide-ts ci |