build: add publish scripts #112
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: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: Install Rokit | |
uses: CompeyDev/[email protected] | |
- name: Install dependencies | |
run: pnpm install | |
- name: Check code quality | |
run: pnpm check | |
- name: Build models | |
run: pnpm build |