Skip to content

2.2.3

2.2.3 #74

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: ["14", "16", "18"]
tag: ["latest", "beta"]
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