Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Bump @sentry/node from 9.4.0 to 9.14.0 #69

Bump @sentry/node from 9.4.0 to 9.14.0

Bump @sentry/node from 9.4.0 to 9.14.0 #69

Workflow file for this run

name: Compile KOG Bot
on:
push:
branches: [ "main", "staging" ]
pull_request:
branches: [ "main", "staging" ]
jobs:
compile:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build project
run: pnpm run build
testrun:
runs-on: ubuntu-22.04
if: github.ref == 'refs/heads/main' || (github.event_name == 'pull_request' && github.base_ref == 'main')
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Simulate environment
run: cp config.example.toml config.toml
- name: Run tests
run: pnpm run start:ci