Update non-major-updates #22
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: test | |
| on: | |
| push: | |
| branches-ignore: ['main'] | |
| jobs: | |
| test-ts: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: checkout 🛒 | |
| uses: actions/checkout@v6 | |
| - name: node 24 ❇️ | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: 'npm' | |
| - name: cache dependencies 💾 | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - name: make npm ♦️ | |
| run: | | |
| npm ci | |
| - name: make lint-js 🧹 | |
| run: | | |
| npm run lint | |
| - name: run test and coverage 🧪 | |
| run: | | |
| npm run coverage | |
| - name: upload coverage 📊 | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| files: ./coverage/coverage-final.json | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| slug: bmlt-enabled/activity |