Skip to content

Bump @sveltestrap/sveltestrap from 7.0.1 to 7.0.3 #3200

Bump @sveltestrap/sveltestrap from 7.0.1 to 7.0.3

Bump @sveltestrap/sveltestrap from 7.0.1 to 7.0.3 #3200

Workflow file for this run

name: build-and-test
on: [push]
jobs:
js:
runs-on: ubuntu-24.04
strategy:
matrix:
node-version: [20.x]
name: Node ${{ matrix.node }} run
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install npm modules
run: npm install
- name: eslint
run: npm run eslint
- name: build
run: npm run build
- name: test
run: npm test
django:
name: Django tests
runs-on: ubuntu-24.04
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
strategy:
matrix:
python-version: ["3.12"]
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run flake8
run: make flake8
- name: Run django tests
run: make test