feat(ml)!: Enforce trackingIds parameter in the creation of PQS and IAPR model #1501
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
branches: [master] | |
types: [opened, edited, synchronize, reopened] | |
push: | |
branches: | |
- 'main' | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
name: CI | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Check lockfiles | |
uses: ./.github/actions/lockfiles | |
- name: Tests | |
run: npm test | |
- name: Build | |
uses: ./.github/actions/build |