⬆ Bump the gradle group across 1 directory with 3 updates #80
Workflow file for this run
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 - Node | |
on: | |
push: | |
branches: | |
- develop | |
- main | |
pull_request: | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20] | |
project: | |
- "components/website-frontend" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache-dependency-path: ${{ matrix.project }}/package-lock.json | |
cache: "npm" | |
- name: Install dependencies | |
run: cd ${{ matrix.project }}; npm ci | |
- name: Verify lint | |
run: cd ${{ matrix.project }}; npm run lint | |
- name: Verify format | |
run: cd ${{ matrix.project }}; npm run format -- -c | |
- name: Test | |
run: cd ${{ matrix.project }}; npm test |