Skip to content

[RenovateBot] Update dependency @sentry/node to v8.40.0 #31

[RenovateBot] Update dependency @sentry/node to v8.40.0

[RenovateBot] Update dependency @sentry/node to v8.40.0 #31

Workflow file for this run

name: Lint
# GitHub repo configuration:
# 1. If you have protected branches, go to Branches > edit protected branch > enable 'Require status checks to pass before
# merging' and select the 'Lint' status check.
# Note: make sure to commit package-lock.json, this is needed for `npm ci`.
# Defines the trigger for this action (e.g. [pull_request, push])
# For more information see: https://help.github.com/en/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows#about-workflow-events)
on:
workflow_dispatch:
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Setup
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
registry-url: 'https://npm.pkg.github.com'
# Install dependencies
- run: |
npm ci --ignore-scripts --audit=false
# Lint
- run: |
npm run lint