Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

docs: update repo #1839

docs: update repo

docs: update repo #1839

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ci:
runs-on: ${{ matrix.os }}
if: ${{ github.event_name != 'pull_request' || github.actor != 'renovate[bot]' }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [14, 16, 18]
steps:
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
check-latest: true
- name: checkout
uses: actions/checkout@master
- name: cache node_modules
id: cache
uses: actions/cache@v3
with:
path: node_modules
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/yarn.lock')) }}
- name: install
if: steps.cache.outputs.cache-hit != 'true'
run: yarn --check-files --frozen-lockfile --non-interactive
- name: lint
run: yarn lint
- name: test
run: yarn test