Merge pull request #169 from Holo-Host/fix/hpos-version-endpoint #443
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: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
branches: [ main, develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
VITE_HPOS_PORT: 4567 | |
strategy: | |
matrix: | |
node-version: [16.x, 17.x, 18.x] | |
steps: | |
- name: 🦴 Fetch source code | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: 🫁 Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: 🦾 Install node-modules | |
run: yarn install | |
- name: 👀 Run tests | |
run: yarn test |