Skip to content

Bump @typescript-eslint/eslint-plugin from 5.59.5 to 5.62.0 (#171) #337

Bump @typescript-eslint/eslint-plugin from 5.59.5 to 5.62.0 (#171)

Bump @typescript-eslint/eslint-plugin from 5.59.5 to 5.62.0 (#171) #337

Workflow file for this run

name: CI
on:
push:
branches: [main]
tags: ["v*"]
pull_request:
branches: ["*"]
jobs:
push:
name: push
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
registry-url: https://registry.npmjs.org
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn run build
- run: yarn run lint:ci
- run: yarn run test
- name: Publish to NPM
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
run: yarn publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}