Skip to content

chore(deps): bump typescript-eslint from 8.16.0 to 8.25.0 #65

chore(deps): bump typescript-eslint from 8.16.0 to 8.25.0

chore(deps): bump typescript-eslint from 8.16.0 to 8.25.0 #65

Workflow file for this run

name: Lint and CI
on:
push:
branches:
- '**'
tags:
- 'v[0-9]+.[0-9]+.[0-9]+-[a-zA-Z0-9]*'
- 'v[0-9]+.[0-9]+.[0-9]+'
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: npm
registry-url: "https://npm.pkg.github.com"
- name: Install
run: npm ci
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Lint
run: npm run lint
build:
name: Publish Github package
runs-on: ubuntu-latest
needs: lint
if: startsWith(github.ref, 'refs/tags/')
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
registry-url: https://npm.pkg.github.com/
- name: Publish package
run: |
npm publish