changed pipeline to use yarn for install and build
Some checks failed
Publish to npm / publish (release) Failing after 3s

This commit is contained in:
Mathias Beaulieu-Duncan 2025-06-23 17:44:22 -04:00
parent 91717d4411
commit 651dd2c2a0
Signed by: mathias
GPG Key ID: 1C16CF05BAF9162D

View File

@ -17,15 +17,16 @@ jobs:
with: with:
node-version: 20 node-version: 20
registry-url: 'https://registry.npmjs.org/' registry-url: 'https://registry.npmjs.org/'
cache: 'yarn'
- name: Install dependencies - name: Install dependencies with Yarn
run: npm ci run: yarn install --immutable
- name: Run type check - name: Run type check
run: npm run type-check run: yarn type-check
- name: Build library - name: Build library
run: npm run build run: yarn build
- name: Determine npm tag - name: Determine npm tag
id: determine_tag id: determine_tag