Skip to content

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.35.1 to 5.62.0 #360

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.35.1 to 5.62.0

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.35.1 to 5.62.0 #360

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main, feat/*]
tags:
- 'v*.*.*'
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
- run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn test
- name: Build tarballs
if: startsWith(github.ref, 'refs/tags/')
run: yarn build:standalone
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: dist/**/*.tar.gz
draft: true
body_path: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
if: startsWith(github.ref, 'refs/tags/')
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- name: Publish to npm
if: startsWith(github.ref, 'refs/tags/')
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}