Skip to content

[BUILD] Bump @types/eslint from 8.44.0 to 8.44.1 #59

[BUILD] Bump @types/eslint from 8.44.0 to 8.44.1

[BUILD] Bump @types/eslint from 8.44.0 to 8.44.1 #59

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 }}