Merge pull request #443 from bartoval/general_refactor #1695
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: '18' | |
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: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- name: Integration tests 🚨 | |
run: | | |
yarn ci |