chore(deps): bump diff from 5.1.0 to 5.2.2 #509
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: main | |
| on: push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Install node 22.x | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: 22.x | |
| - name: Install via APT - Graphviz | |
| run: | | |
| sudo apt-get install --no-install-recommends -y graphviz | |
| - name: Setup Node Package Cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - name: Setup packages | |
| run: npm ci --prefer-offline --no-audit --legacy-peer-deps | |
| env: | |
| HUSKY_SKIP_INSTALL: 1 | |
| - name: Build | |
| run: npm run build | |
| env: | |
| GATSBY_TELEMETRY_DISABLED: 1 | |
| - name: Lint Code | |
| run: npm run lint:code | |
| - name: Lint Styles | |
| run: npm run lint:styles | |