Skip to content

chore(deps): update all non-major dependencies #105

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #105

Workflow file for this run

name: Pull Request
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Setup Node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Run audit
run: npm audit
- name: Run lint
run: npm run lint --workspaces
- name: Build
run: npm run build --workspaces
env:
LANGTRACE_API_URL: "http://localhost:1994"