Skip to content

Add prepare script to the publish workflow #6

Add prepare script to the publish workflow

Add prepare script to the publish workflow #6

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install --frozen-lockfile
- name: Prepare
run: npm run dev:prepare
- name: Test
run: npm run ci