Skip to content

Bump @angular/cdk from 17.3.10 to 18.2.5 #456

Bump @angular/cdk from 17.3.10 to 18.2.5

Bump @angular/cdk from 17.3.10 to 18.2.5 #456

Workflow file for this run

name: Docs
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache node modules
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-build-${{ env.cache-name }}-
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: Install Dependencies
run: npm ci
- name: Build doc
run: npm run doc
- name: Archive www Artifact
uses: actions/upload-artifact@master
with:
name: documentation
path: documentation
deploy:
name: Deploy 🚀
needs: [build]
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Download Artifact
uses: actions/download-artifact@master
with:
name: documentation
path: documentation
- name: Deploy to github pages
uses: JamesIves/github-pages-deploy-action@4.1.0
with:
branch: gh-pages
folder: documentation
CLEAN: true