Skip to content

chore(deps-dev): bump lint-staged from 15.1.0 to 15.2.0 #675

chore(deps-dev): bump lint-staged from 15.1.0 to 15.2.0

chore(deps-dev): bump lint-staged from 15.1.0 to 15.2.0 #675

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