chore(deps): update dependency rollup to v4.22.4 [security] #1209
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build: | |
name: (stencil-sass with Stencil version ${{ matrix.stencil_version }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
# Run with multiple different versions of Stencil in parallel: | |
# 1. DEFAULT - uses the version of Stencil written in `package-lock.json`, keeping the same version used by the | |
# Stencil team as a source of truth | |
# 2. 2 - will install the latest release under major version 2 of Stencil. This should be kept as long as this | |
# library supports Stencil v2.Y.Z | |
# 3. 3 - will install the latest release under major version 3 of Stencil. This should be kept as long as this | |
# library supports Stencil v3.Y.Z | |
# 4. 4 - will install the latest release under major version 4 of Stencil. This should be kept as long as this | |
# library supports Stencil v4.Y.Z | |
stencil_version: ['DEFAULT', '2', '3', '4'] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
persist-credentials: false | |
- name: Use Node from Volta | |
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3 | |
with: | |
node-version-file: 'package.json' | |
cache: 'npm' | |
- name: Install Dependencies | |
run: npm ci | |
shell: bash | |
- name: Prettier Check | |
run: npm run prettier.dry-run | |
shell: bash | |
- name: Install Stencil ${{matrix.stencil_version}} | |
run: npm install --save-dev @stencil/core@${{matrix.stencil_version}} | |
shell: bash | |
if: ${{ matrix.stencil_version != 'DEFAULT' }} | |
- name: Report Stencil Version | |
run: npm ls @stencil/core | |
shell: bash | |
- name: Build | |
run: npm run build -- --ci | |
shell: bash | |
- name: Test | |
run: npm run test.ci | |
shell: bash |