Skip to content

Update data/latest.json #1366

Update data/latest.json

Update data/latest.json #1366

Workflow file for this run

# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
name: CI
on: [push]
jobs:
lint:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
node-version: [18.x, 20.x]
name: OS ${{ matrix.os }} / NodeJS ${{ matrix.node-version }}
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install the packages
run: yarn install --frozen-lockfile --ignore-engines
- name: Run format:check
run: yarn format:check
- name: Run the unit tests
run: yarn test