1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +00:00

fix ci jobs

This commit is contained in:
thatmattlove 2024-03-01 23:31:17 -05:00
parent 4a45ea0ddc
commit a6794ad2ac
3 changed files with 12 additions and 6 deletions

View file

@ -10,6 +10,7 @@ jobs:
fail-fast: false
matrix:
node-version: [20.x]
pnpm-version: [8]
redis-version: [latest]
python-version: ["3.9", "3.10", "3.11"]
os: [ubuntu-latest]
@ -32,6 +33,11 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install PNPM
uses: pnpm/action-setup@v3
with:
version: ${{ matrix.pnpm-version }}
- name: Start Redis
uses: supercharge/redis-github-action@1.7.0
with:
@ -44,12 +50,12 @@ jobs:
echo "HYPERGLASS_HOST=127.0.0.1" >> $GITHUB_ENV
echo "HYPERGLASS_PORT=8001" >> $GITHUB_ENV
- name: Install
run: rye install && rye sync
- name: Enter venv
run: . .venv/bin/activate
- name: Install
run: rye install
- name: Lint (Rye)
run: rye lint

View file

@ -24,7 +24,8 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v3
- name: Install PNPM
uses: pnpm/action-setup@v3
with:
version: ${{ matrix.pnpm-version }}

View file

@ -40,7 +40,6 @@
"**/*.tsx",
"types/*.d.ts",
"next.config.js",
"nextdev.js",
"hyperglass.json"
"nextdev.js"
]
}