Update package.json v1.1.3 (#27) #76
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: Continuous testing | |
on: | |
pull_request: | |
push: | |
branches: ["main"] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
command: [lint, build, test] | |
runs-on: ubuntu-latest | |
name: running ${{ matrix.command }} | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: 20 | |
- name: Cache node modules | |
id: cache-npm | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-node-modules | |
with: | |
# npm cache files are stored in `~/.npm` on Linux/macOS | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}- | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- run: yarn run ${{ matrix.command }} | |
conclude: | |
runs-on: ubuntu-latest | |
name: All tests passed | |
needs: [test] | |
steps: | |
- run: echo '### Good job! All the tests passed 🚀' >> $GITHUB_STEP_SUMMARY |