Skip to content

Update dependency esbuild to ^0.28.0 #159

Update dependency esbuild to ^0.28.0

Update dependency esbuild to ^0.28.0 #159

Workflow file for this run

name: build
on:
push:
branches:
- master
# Run tests for any PRs.
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x,16.x]
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
- name: npm run build
run: npm run build
- name: npm run test
run: npm run test
env:
CI: true