CI Weekly #104
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 Weekly | |
on: | |
schedule: | |
# Run at 00:20 every Monday | |
- cron: '20 0 * * Mon' | |
workflow_dispatch: | |
jobs: | |
ci-weekly: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
with: | |
ref: develop | |
- name: Setup node | |
id: setup-node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Use cache for root node_modules | |
id: cache-root-node_modules | |
uses: actions/cache@v4 | |
with: | |
path: node_modules | |
key: root-node_modules-${{ steps.setup-node.outputs.node-version }}-${{ hashFiles('package-lock.json') }} | |
- name: Install | |
if: steps.cache-root-node_modules.outputs.cache-hit != 'true' | |
run: | | |
npm ci --no-audit --no-fund | |
- name: Lint scripts | |
run: | | |
npm run eslint | |
- name: Check types | |
run: | | |
npm run check-types | |
- name: Build scripts | |
run: | | |
npm run build:scripts | |
- name: Build test pages | |
run: | | |
npm run build:tests | |
- name: Lint styles | |
run: | | |
npm run stylelint | |
- name: Ensure standalone build | |
run: | | |
npm run sass:standalone | |
- name: Build themes using node-sass (full) | |
run: | | |
npm run sass | |
- name: Build swatches using node-sass | |
run: | | |
npm run sass:swatches | |
- name: Build docs | |
run: | | |
npm run docs | |
- name: Check docs | |
run: | | |
npm run docs:check | |
- name: Test integrations | |
run: | | |
npm run test:integrations |