Skip to content

chore(deps): bump next from 14.0.4 to 14.1.1 #715

chore(deps): bump next from 14.0.4 to 14.1.1

chore(deps): bump next from 14.0.4 to 14.1.1 #715

Workflow file for this run

name: Unit Tests
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Cache Node Modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install Node Modules
run: |
yarn --immutable
env:
CI: true
- name: Run test
run: |
yarn test
env:
CI: true