Skip to content

Merge pull request #244 from raaymax/eslint-fix #45

Merge pull request #244 from raaymax/eslint-fix

Merge pull request #244 from raaymax/eslint-fix #45

Workflow file for this run

name: ci-macos
on: [ push, pull_request ]
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: update package manager & install python3 environment
run: |
sudo pip install poetry
poetry install --with build
- name: install npm environment
run: |
cd ui
npm install
- name: run continuous integration pipeline
run: |
poetry run alfred ci