Skip to content

downgrade ESLint to address bug #82

downgrade ESLint to address bug

downgrade ESLint to address bug #82

Workflow file for this run

on:
push:
tags:
- 'v*'
name: Release
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.x
- run: yarn install --immutable
- run: yarn test:types
- run: yarn format
- run: yarn lint
- run: git diff --exit-code
- run: yarn build
- uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: ' '
- uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}