Skip to content

WIP - Rewriting tests to use vitest #2344

WIP - Rewriting tests to use vitest

WIP - Rewriting tests to use vitest #2344

Workflow file for this run

on:
push:
branches:
- master
pull_request:
name: CI
jobs:
chore:
name: Integration Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Print environment
run: |
node --version
npm --version
python --version
pip --version
- name: Install Node dependencies
run: npm ci
- name: Install Python dependencies
run: pip install kinto kinto-attachment
- name: Run tests
run: npm test