chore(General): π¨ Add commitlint action #1225
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: skupper-console | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ποΈ | |
uses: actions/checkout@v3 | |
- name: Set up Node.js βοΈ | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
cache: 'yarn' | |
cache-dependency-path: yarn.lock | |
- name: Install π¦ | |
run: | | |
yarn install --immutable --immutable-cache --check-cache --prefer-offline | |
- name: Lint π¨ | |
run: | | |
yarn lint | |
- name: Build π§ | |
run: | | |
yarn build | |
- name: Get number of CPU cores π» | |
id: cpu-cores | |
uses: SimenB/github-actions-cpu-cores@v1 | |
- name: Unit tests π§ | |
run: | | |
yarn coverage --max-workers ${{ steps.cpu-cores.outputs.count }} | |
- name: Integration tests π¨ | |
run: | | |
yarn ci |