Skip to content

🤖 Sync Liquid Docs Translations #2127

🤖 Sync Liquid Docs Translations

🤖 Sync Liquid Docs Translations #2127

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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
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