Skip to content

Bump @typescript-eslint/rule-tester from 7.16.0 to 8.5.0 #536

Bump @typescript-eslint/rule-tester from 7.16.0 to 8.5.0

Bump @typescript-eslint/rule-tester from 7.16.0 to 8.5.0 #536

Workflow file for this run

name: Release (canary)
on:
push:
branches-ignore:
- 'main'
- 'changeset-release/main'
concurrency:
group: npm-canary
cancel-in-progress: false
jobs:
release:
if: ${{ github.repository == 'primer/eslint-plugin-primer-react' }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
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: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 14.x
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build --if-present
- name: Create .npmrc
run: |
cat << EOF > "$HOME/.npmrc"
//registry.npmjs.org/:_authToken=$NPM_TOKEN
EOF
env:
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN_SHARED }}
- name: Publish canary version
run: |
echo "$( jq '.version = "0.0.0"' package.json )" > package.json
echo -e "---\n'eslint-plugin-primer-react': patch\n---\n\nFake entry to force publishing" > .changeset/force-snapshot-release.md
yarn changeset version --snapshot
yarn changeset publish --tag canary
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Output canary version number
uses: actions/[email protected]
with:
script: |
const package = require(`${process.env.GITHUB_WORKSPACE}/package.json`)
github.rest.repos.createCommitStatus({
owner: context.repo.owner,
repo: context.repo.repo,
sha: context.sha,
state: 'success',
context: `Published ${package.name}`,
description: package.version,
target_url: `https://unpkg.com/${package.name}@${package.version}/`
})