Skip to content

Bump esbuild from 0.16.14 to 0.16.17 #316

Bump esbuild from 0.16.14 to 0.16.17

Bump esbuild from 0.16.14 to 0.16.17 #316

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
node-version: [14, 16, 18]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
# Now install and run tests
- run: npm ci
- run: npm run build
- run: npm test
# Run lint as it's own job (also sets up caching of npm packages)
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
# Now install packages and lint
- run: npm ci
- run: npm run lint