Skip to content

chore(deps): update dependency @stencil/core to v4.18.0 #114

chore(deps): update dependency @stencil/core to v4.18.0

chore(deps): update dependency @stencil/core to v4.18.0 #114

Workflow file for this run

name: CI
on:
merge_group:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version-file: 'package.json'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run Format Check
run: npm run prettier.dry-run
- name: Build project
run: npm run build
- name: Run Tests
run: npm test -- --no-watch
# Verify that the Example Project Builds
- name: Install Example Project Dependencies
working-directory: './example'
run: npm ci
- name: Build Example Project
working-directory: './example'
run: npm run build
- name: Verify No Files Have Changed
working-directory: './example'
# here we check that there are no changed / new files.
# we use `git status` and check if there are more than 0 lines in the output.
run: |
if [[ $(git status --short | wc -l) -ne 0 ]]; then
STATUS=$(git status --verbose);
printf "%s" "$STATUS";
git diff | cat;
exit 1;
fi
shell: bash