Skip to content

1.8.0

1.8.0 #283

Workflow file for this run

name: Node CI
on:
push:
paths:
- 'dist/**/*'
- 'scripts/**/*'
- 'src/**/*'
- 'test/**/*'
- 'package.json'
- '*.js'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 19.x]
steps:
- uses: actions/checkout@main
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@main
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: npm install, build, and test
run: |
npm ci
npm run test:es:prod
npm run test:es:dev
npm run build
npm run test:es:prod
npm run test:es:dev
env:
CI: true