Skip to content

chore: standardize tempalte lintrcs and eslint versions (#3443) #2539

chore: standardize tempalte lintrcs and eslint versions (#3443)

chore: standardize tempalte lintrcs and eslint versions (#3443) #2539

Workflow file for this run

name: Release
on:
push:
branches:
- main
env:
NODE_VERSION: "24.x"
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Install PNPM
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
with:
run_install: false
- name: Setup Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: ${{ env.NODE_VERSION }}
cache: pnpm
- name: Install Dependencies
run: pnpm install
- name: Create Release Pull Request
uses: changesets/action@e0145edc7d9d8679003495b11f87bd8ef63c0cba # v1.5.3
with:
version: pnpm version-packages
publish: pnpm release-packages
env:
# Token setup in hashibot-hds' account
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}
# Token setup in hashibot-hds' account
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}