Skip to content

build: include engines field in package.json (#54) #80

build: include engines field in package.json (#54)

build: include engines field in package.json (#54) #80

Workflow file for this run

name: Test all packages
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
if: ${{ ! contains(github.actor ,'[bot]')}}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
# Set up GitHub Actions caching for Wireit.
- uses: google/wireit@setup-github-actions-caching/v1
- run: npm ci
- run: npm run test-all