Bump word-wrap from 1.2.3 to 1.2.4 #526
Workflow file for this run
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
name: CI | |
on: [push] | |
env: | |
NODE_OPTIONS: "--max_old_space_size=4096" | |
jobs: | |
build: | |
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node: ["14.x", "16.x", "18.x"] | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Use pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: ${{ matrix.node == '14.x' && '6' || 'latest' }} | |
- name: Use Node ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: "pnpm" | |
- name: Install Dependencies | |
run: pnpm i | |
- name: Lint | |
run: pnpm lint | |
- name: Build Packages | |
run: pnpm p:build | |
- name: Build Examples ${{ matrix.node }} | |
if: matrix.node != '18.x' | |
run: pnpm turbo run build --filter='./examples/*' --filter=!gatsby-typescript | |
- name: Build Examples ${{ matrix.node }} | |
if: matrix.node == '18.x' | |
run: pnpm turbo run build --filter='./examples/*' |