Skip to content

fix(deps): update all major dependencies (major) #1818

fix(deps): update all major dependencies (major)

fix(deps): update all major dependencies (major) #1818

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.13.0]
steps:
- name: Begin CI...
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version: ${{ matrix.node-version }}
- name: Use cached node_modules
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
with:
path: node_modules
key: nodeModules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
nodeModules-
- name: Install dependencies
# TODO: add check yarn.lock
# run: yarn install --frozen-lockfile
run: yarn install
env:
CI: true
- name: Lint
run: yarn lint
env:
CI: true
- name: Test
run: yarn test
env:
CI: true