chore(deps): bump downshift from 8.4.0 to 9.0.2 #3339
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: Node.js CI | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
env: | |
CI: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
- name: Install | |
run: npm ci | |
- name: Check Linting | |
run: npm run lint | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
env: | |
CI: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
- name: Install | |
run: npm ci | |
- name: Run tests | |
run: npm run test-ci | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
env: | |
CI: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
- name: Install | |
run: npm ci | |
- name: Cache nextjs build cache | |
uses: jongwooo/next-cache@v1 | |
- name: Build | |
run: npm run build | |
- name: Check for uncommitted changes | |
id: check-changes | |
uses: mskri/[email protected] | |
- name: There are uncommited changes | |
if: steps.check-changes.outputs.changes != '' | |
run: exit 1 |