Skip to content

????

???? #84

Workflow file for this run

name: CI
on:
push:
branches: ["storyline"]
pull_request:
branches: ["storyline"]
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: "21"
- name: Setup Python
uses: actions/[email protected]
with:
python-version: "3.12"
- name: Install Poetry
run: pip install poetry
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}