Skip to content

Commit

Permalink
more ci tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
vigneshka committed Dec 15, 2023
1 parent 8e48a58 commit 3e86b2b
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 55 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/danger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- uses: pnpm/action-setup@v2.0.1
- name: Setup PNPM
uses: pnpm/action-setup@v2.2.4
with:
version: latest
- name: Setup Node v16
uses: actions/setup-node@v2

- name: Setup Node v18
uses: actions/setup-node@v4
with:
node-version: '16.x'
node-version: 18
cache: 'pnpm'

- name: Run Danger JS
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,10 @@ jobs:
with:
version: latest

- name: Set up Node.js
uses: actions/setup-node@v3
- name: Setup Node v18
uses: actions/setup-node@v4
with:
node-version: 16.16.0
cache: 'pnpm'
node-version: 18

- name: Install Node.js dependencies
run: pnpm install
Expand Down
93 changes: 46 additions & 47 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,52 +1,51 @@
name: Release

on:
push:
branches:
- main
push:
branches:
- main

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout Master
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node
uses: actions/setup-node@v2
with:
node-version: "16.x"
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Cache pnpm modules
uses: actions/cache@v2
env:
cache-name: cache-pnpm-modules
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('./pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- name: install pnpm
run: npm i pnpm@^7.2.1 -g
- name: Install Dependencies
run: pnpm i
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0

- name: Setup PNPM
uses: pnpm/action-setup@v2.2.4
with:
version: latest

- name: Setup Node v18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'

- name: Install Dependencies
run: pnpm install --no-frozen-lockfile

- name: Setup NPM credentials
run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Set version variables
id: vars
shell: bash
run: |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
echo "date=$(date +"%B %d, %Y")" >> $GITHUB_OUTPUT
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: dotansimha/changesets-action@v1.3.3
with:
publish: "pnpm release"
commit: "chore(release): update monorepo packages versions"
title: "Upcoming Release Changes"
createGithubReleases: true
githubReleaseName: ${{ steps.vars.outputs.date }}
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: dotansimha/changesets-action@v1.3.3
with:
publish: 'pnpm release'
commit: 'chore(release): update monorepo packages versions'
title: 'Upcoming Release Changes'
createGithubReleases: true
githubReleaseName: ${{ steps.vars.outputs.date }}
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3e86b2b

Please sign in to comment.