Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardoperra committed Apr 27, 2024
1 parent 0679bee commit f725823
Show file tree
Hide file tree
Showing 5 changed files with 13,654 additions and 61 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@ concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
release:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [ 15 ]
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
with:
fetch-depth: 0

- uses: pnpm/[email protected]

- name: Setup Node.js 17.x
uses: actions/setup-node@v2
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 17.x
cache: pnpm
node-version: ${{ matrix.node-version }}
cache: 'pnpm'

- name: Creating .npmrc
run: |
Expand Down
35 changes: 0 additions & 35 deletions .github/workflows/tests.yml

This file was deleted.

25 changes: 11 additions & 14 deletions .github/workflows/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,20 @@ concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
version:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [ 15 ]
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
with:
fetch-depth: 0

- uses: pnpm/[email protected]

- name: Setup Node.js 17.x
uses: actions/setup-node@v2
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 17.x
cache: pnpm

- name: Install Dependencies
run: pnpm install
node-version: ${{ matrix.node-version }}
cache: 'pnpm'

- name: Create Update Version Pull Request
id: changesets
Expand Down
Loading

0 comments on commit f725823

Please sign in to comment.