Bump get-intrinsic from 1.2.4 to 1.2.6 (#722) #178
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: npm build | |
on: push | |
permissions: | |
contents: read | |
jobs: | |
npm-build: | |
name: build, compile, and test angular components | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "npm" | |
- name: setup | |
run: npm ci | |
- name: run Static Tests | |
run: | | |
npm test -- --no-watch --watch=false --progress=false --no-progress --browsers=ChromeHeadlessCI | |
- name: ensure documentation is buildable | |
run: | | |
npm run build:docs | |
- name: ensure angular components package compiles | |
run: | | |
npm run build | |
- name: ensure web components package compiles | |
run: | | |
npm run build:web |