mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-04-06 15:30:30 +08:00
chore: Update github actions to use pnpm
This commit is contained in:
parent
84504476ed
commit
ff368f8e09
5
.github/workflows/release.yaml
vendored
5
.github/workflows/release.yaml
vendored
@ -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
|
||||
|
10
.github/workflows/test-branches.yml
vendored
10
.github/workflows/test-branches.yml
vendored
@ -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
|
||||
|
23
.github/workflows/test-pulls.yml
vendored
23
.github/workflows/test-pulls.yml
vendored
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user