Skip to content

Reduce targeting of internal Angular Material elements #69

Reduce targeting of internal Angular Material elements

Reduce targeting of internal Angular Material elements #69

Workflow file for this run

name: Verify build
on:
workflow_dispatch:
pull_request_target:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: install
run: pnpm install --frozen-lockfile
- name: build lib
run: pnpm lib
- name: build demo
run: pnpm build
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: install
run: pnpm install --frozen-lockfile
- name: lint
run: pnpm lint
test-chrome:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: install
run: pnpm install --frozen-lockfile
- name: test
run: pnpm test --watch=false --browsers=ChromeHeadless
test-firefox:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: install
run: pnpm install --frozen-lockfile
- name: test
run: pnpm test --watch=false --browsers=FirefoxHeadless
test-safari:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: install
run: pnpm install --frozen-lockfile
- name: test
run: pnpm test --watch=false --browsers=SafariNative
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: install
run: pnpm install --frozen-lockfile
- name: prettier
run: pnpm prettier-check