Skip to content

[BUILD] Bump @typescript-eslint/eslint-plugin from 6.0.0 to 6.2.0 #58

[BUILD] Bump @typescript-eslint/eslint-plugin from 6.0.0 to 6.2.0

[BUILD] Bump @typescript-eslint/eslint-plugin from 6.0.0 to 6.2.0 #58

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Lint code
run: npm run lint
- name: Test code
run: npm test
- name: Build package
run: npm run build
- name: Deploy package
if: github.ref == 'refs/heads/main'
run: npm publish --dry-run
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}