🤖 Sync Liquid Docs Translations #326
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: [16.x, 17.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 the unit tests | |
run: yarn test |