chore(deps): update typescript-eslint monorepo to v8.8.1 #163
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://gist.github.com/paullessing/d706c8af51faca68c6ba0f9f9bae4e4b#file-release-when-pushed-yml | |
name: 📦☁️ Release | |
on: | |
workflow_dispatch: | |
push: | |
branches: [master] | |
jobs: | |
release: | |
name: 📦☁️ Release | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
registry-url: 'https://registry.npmjs.org' | |
- name: ⚡ Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: 📦 Package | |
run: yarn pack --filename=package.tgz | |
- name: 🚀 Upload package as an artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: package.tgz |