Koala - Daily totals add secondary counters / meters #115
Workflow file for this run
This file contains hidden or 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: Check Web Theme Koala | |
| on: | |
| pull_request: | |
| paths: | |
| - packages/modules/web_themes/koala/source/** | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node: [ 22, 24 ] | |
| # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js ${{ matrix.node }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: 'npm' | |
| cache-dependency-path: packages/modules/web_themes/koala/source/package-lock.json | |
| - name: Install Dependencies and Build | |
| run: | | |
| cd packages/modules/web_themes/koala/source | |
| npm install | |
| npm run lint | |
| # npm run test:unit | |
| npm run build --if-present |