Update sentry integration, assorted long-term bug and feature fixes, add refresh cache admin endpoints #600
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Compile | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
node20: | |
name: node v22 - tsc | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: installs pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8.15.5 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22.14.0' | |
cache: 'pnpm' | |
- name: dependencies | |
run: pnpm i | |
- name: settings | |
run: cp settings.example.json settings.json | |
- name: tsc | |
uses: icrawl/action-tsc@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |