Skip to content

feat(General): ✨ Add remote pagination to addresses and proc… #894

feat(General): ✨ Add remote pagination to addresses and proc…

feat(General): ✨ Add remote pagination to addresses and proc… #894

Workflow file for this run

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 test --max-workers ${{ steps.cpu-cores.outputs.count }} --silent
- name: Integration tests 🚨
run: |
yarn ci