build(deps-dev): bump @types/node from 22.5.5 to 22.7.4 (#217) #185
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: Generate Sourcemaps | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
run-eslint: | |
name: Generate Sourcemaps | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm install | |
- name: Build sourcemaps | |
run: npm run build-sourcemaps | |
- name: Create Sentry release | |
uses: getsentry/action-release@v1 | |
env: | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
SENTRY_ORG: daniel-miao | |
SENTRY_PROJECT: climatechangeinformation-website | |
with: | |
environment: production | |
sourcemaps: "./dist" |