mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-03-31 15:20:32 +08:00
chore: Fix github actions config
This commit is contained in:
parent
ff368f8e09
commit
6df02fd7f5
9
.github/workflows/release.yaml
vendored
9
.github/workflows/release.yaml
vendored
@ -9,13 +9,12 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
environment: publish
|
||||
steps:
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v2
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '14.x'
|
||||
node-version: 16
|
||||
registry-url: https://registry.npmjs.org/
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: pnpm install
|
||||
run: pnpm install --frozen-lockfile
|
||||
|
||||
|
21
.github/workflows/test-branches.yml
vendored
21
.github/workflows/test-branches.yml
vendored
@ -9,22 +9,25 @@ on:
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node: [14, 16, 18]
|
||||
steps:
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '14.x'
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install and build
|
||||
run: pnpm install --frozen-lockfile
|
||||
- name: Test packages
|
||||
run: pnpm test
|
||||
node-version: ${{ matrix.node }}
|
||||
cache: 'pnpm'
|
||||
- uses: pnpm/action-setup@v2
|
||||
- run: pnpm install --frozen-lockfile
|
||||
- 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
|
||||
uses: paambaati/codeclimate-action@v3
|
||||
env:
|
||||
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
|
||||
with:
|
||||
coverageLocations: |
|
||||
${{github.workspace}}/packages/**/coverage/lcov.info:lcov
|
||||
continue-on-error: true
|
||||
|
20
.github/workflows/test-pulls.yml
vendored
20
.github/workflows/test-pulls.yml
vendored
@ -7,20 +7,22 @@ jobs:
|
||||
test:
|
||||
name: Test
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node: [14, 16, 18]
|
||||
steps:
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v2
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '14.x'
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install and build
|
||||
run: pnpm install --frozen-lockfile
|
||||
- name: Test packages
|
||||
run: pnpm test
|
||||
node-version: ${{ matrix.node }}
|
||||
cache: 'pnpm'
|
||||
- uses: pnpm/action-setup@v2
|
||||
- run: pnpm install --frozen-lockfile
|
||||
- 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
|
||||
uses: paambaati/codeclimate-action@v3
|
||||
env:
|
||||
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
|
||||
with:
|
||||
|
Loading…
x
Reference in New Issue
Block a user