Skip to content

Bump xdg from 8.3.0 to 8.4.0 #3988

Bump xdg from 8.3.0 to 8.4.0

Bump xdg from 8.3.0 to 8.4.0 #3988

Workflow file for this run

name: Typescript
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4.0.2
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Run npm ci (similar to install but made for CI)
run: npm ci
- name: Run Angular Build Prod
run: npm run build
- name: Run Angular Test
run: npm run test_ci
- name: Run Angular Lint
run: npm run lint