Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

fix(deps): update all non-major dependencies #708

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #708

name: Continuous Integration
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@f25a3a9f25bd5f4c5d77189cab02ff357b5aedeb # tag=v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@1f8c6b94b26d0feae1e387ca63ccbdc44d27b561 # tag=v2
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: ESLint
run: yarn lint
- name: TypeScript build
run: yarn build
- name: Run tests
run: yarn test