Skip to content

Bump @angular/cdk from 18.2.6 to 19.1.3 #54

Bump @angular/cdk from 18.2.6 to 19.1.3

Bump @angular/cdk from 18.2.6 to 19.1.3 #54

Workflow file for this run

on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm run build --if-present -- --base-href .
- uses: actions/upload-pages-artifact@v3
with:
path: dist/tso-tools/browser
deploy:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/deploy-pages@v4
id: deployment