π· Upgrade w5s/actions digest to dd03a09 #7696
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: CI | |
| on: | |
| merge_group: {} | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| name: Node.js ${{ matrix.node-version }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: | |
| - 24 | |
| - 22 | |
| - 20 | |
| steps: | |
| - name: β¬οΈ Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: βοΈ Setup | |
| uses: w5s/actions/setup@dd03a09ee8d0e1d61eebe5916ff072fe67ee925e # main | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: π¨ Build | |
| uses: w5s/actions/task@dd03a09ee8d0e1d61eebe5916ff072fe67ee925e # main | |
| with: | |
| task: build | |
| - name: π Validate | |
| uses: w5s/actions/task@dd03a09ee8d0e1d61eebe5916ff072fe67ee925e # main | |
| with: | |
| task: validate |