diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml index 713bcef..7c4f51f 100644 --- a/.gitea/workflows/publish.yaml +++ b/.gitea/workflows/publish.yaml @@ -17,15 +17,16 @@ jobs: with: node-version: 20 registry-url: 'https://registry.npmjs.org/' + cache: 'yarn' - - name: Install dependencies - run: npm ci + - name: Install dependencies with Yarn + run: yarn install --immutable - name: Run type check - run: npm run type-check + run: yarn type-check - name: Build library - run: npm run build + run: yarn build - name: Determine npm tag id: determine_tag