Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork38
Merge branch 'renovate/all-docs' into 'master'#223
This file contains hidden or 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:node-actions | |
on: | |
push: | |
branches: | |
-'*' | |
pull_request: | |
branches: | |
-master | |
jobs: | |
lint: | |
runs-on:ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
-20.x | |
steps: | |
-uses:actions/checkout@v3 | |
-uses:pnpm/action-setup@v2 | |
with: | |
version:latest | |
-name:Use Node.js ${{ matrix.node-version }} | |
uses:actions/setup-node@v3 | |
with: | |
node-version:${{ matrix.node-version }} | |
cache:'pnpm' | |
-run:pnpm install --frozen-lockfile | |
-run:pnpm run lint | |
test: | |
runs-on:${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: | |
-18.x | |
-20.x | |
os: | |
-ubuntu-latest | |
steps: | |
-uses:actions/checkout@v3 | |
-uses:pnpm/action-setup@v2 | |
with: | |
version:latest | |
-name:Use Node.js ${{ matrix.node-version }} | |
uses:actions/setup-node@v3 | |
with: | |
node-version:${{ matrix.node-version }} | |
cache:'pnpm' | |
-run:pnpm install --frozen-lockfile | |
-run:pnpm run build | |
-run:pnpm run test | |
build: | |
runs-on:ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
-20.x | |
steps: | |
-uses:actions/checkout@v3 | |
-uses:pnpm/action-setup@v2 | |
with: | |
version:latest | |
-name:Use Node.js ${{ matrix.node-version }} | |
uses:actions/setup-node@v3 | |
with: | |
node-version:${{ matrix.node-version }} | |
cache:'pnpm' | |
-run:pnpm install --frozen-lockfile | |
-run:pnpm run build |