build(deps-dev): Bump typescript-eslint from 8.18.0 to 8.18.1 #219
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
name: build-and-publish | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js & npm | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Install dependencies | |
run: npm ci | |
- name: Prettification Check | |
run: npm run prettification-check | |
- name: Linting | |
run: npm run lint | |
- name: Run Build Script | |
run: npm run build | |
- name: Publish if version has been updated | |
if: ${{ github.ref_name == 'main' }} | |
uses: JS-DevTools/npm-publish@v3 | |
with: | |
token: ${{ secrets.NPM_TOKEN }} |