Skip to content

Update Eleventy versions in CI #78

Update Eleventy versions in CI

Update Eleventy versions in CI #78

Workflow file for this run

name: CI
on:
push:
branches:
- main
- beta
- next
- dev*
paths-ignore:
- "*.md"
- "docs/**"
pull_request:
types: [opened, reopened]
paths-ignore:
- "*.md"
- "docs/**"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
node: ["18", "20", "22"]
tag: ["1.0.2", "latest"]
name: Node.js ${{ matrix.node }} on ${{ matrix.os }} against @11ty/eleventy@${{ matrix.tag }}
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
# cache: npm
- run: npm install
- if: matrix.tag == 'beta'
run: npm install --tag=beta @11ty/eleventy
- run: npm test
env:
YARN_GPG: no