Skip to content

docs: add warning about mixing released/git code on the same data set… #148

docs: add warning about mixing released/git code on the same data set…

docs: add warning about mixing released/git code on the same data set… #148

Workflow file for this run

name: ci
on:
merge_group:
types: [checks_requested]
push:
branches:
- main
- bugfixes
- develop
pull_request:
branches:
- main
- bugfixes
- develop
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
check-typos:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- name: Run typos checker
uses: crate-ci/typos@master
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup node env 🏗
uses: actions/setup-node@v4
with:
cache: pnpm
node-version-file: .nvmrc
- name: Install dependencies 👨🏻‍💻
run: pnpm install --frozen-lockfile
- name: Run linter 👀
run: pnpm run lint
- name: Build
run: pnpm run build