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:
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