Skip to content

Bump typescript from 5.3.3 to 5.5.3 #148

Bump typescript from 5.3.3 to 5.5.3

Bump typescript from 5.3.3 to 5.5.3 #148

Workflow file for this run

name: Security audit
on:
workflow_dispatch:
schedule:
- cron: "0 0 */3 * *"
push:
paths:
- "**/pnpm-lock.yaml"
- "**/package.json"
jobs:
security_audit:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 21]
pnpm-version: [8]
steps:
- uses: actions/checkout@v3
- name: Use pnpm ${{ matrix.pnpm-version }}
uses: pnpm/action-setup@v2
with:
version: ${{ matrix.pnpm-version }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
cache-dependency-path: "."
- name: Install dependencies
run: pnpm install
- name: Scan for vulnerabilities
run: pnpm audit