chore: Update github actions to use pnpm

This commit is contained in:
Sam 2022-09-10 17:46:07 +02:00
parent 84504476ed
commit ff368f8e09
No known key found for this signature in database
GPG Key ID: D004126FCD1A6DF0
3 changed files with 7 additions and 31 deletions

View File

@ -17,10 +17,7 @@ jobs:
- uses: actions/checkout@v2
- name: pnpm install
run: pnpm install
- name: pnpm build
run: pnpm build
run: pnpm install --frozen-lockfile
# --no-verify-access to use automation tokens https://github.com/lerna/lerna/issues/2788
# --ignore-scripts to avoid scripts that could read npm token

View File

@ -5,7 +5,6 @@ on:
branches:
- main
- develop
- v4
jobs:
test:
@ -16,13 +15,10 @@ jobs:
with:
node-version: '14.x'
- uses: actions/checkout@v2
- name: Check yarn cache integrity
run: yarn install --immutable --immutable-cache --check-cache
- name: Build packages
run: yarn build
# format tests don't pass on node 12 since icu is missing and tests don't work with locales
- name: Install and build
run: pnpm install --frozen-lockfile
- name: Test packages
run: yarn test:ci
run: pnpm test
- name: Upload coverage to codecov
run: bash <(curl -s https://codecov.io/bash)
- name: Upload coverage to codeclimate

View File

@ -13,17 +13,12 @@ jobs:
with:
node-version: '14.x'
- uses: actions/checkout@v2
- name: yarn install
run: yarn install
- name: Build packages
run: yarn build
- name: Install and build
run: pnpm install --frozen-lockfile
- name: Test packages
run: yarn test:ci
run: pnpm test
- name: Upload coverage to codecov
run: bash <(curl -s https://codecov.io/bash)
- name: Upload coverage to codeclimate
uses: paambaati/codeclimate-action@v2.7.5
env:
@ -32,15 +27,3 @@ jobs:
coverageLocations: |
${{github.workspace}}/packages/**/coverage/lcov.info:lcov
continue-on-error: true
check-yarn-cache:
name: Check yarn cache
runs-on: ubuntu-latest
steps:
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '14.x'
- uses: actions/checkout@v2
- name: Check yarn cache integrity
run: yarn install --immutable --immutable-cache --check-cache