Skip to content

[Snyk] Upgrade esbuild from 0.15.7 to 0.23.0 #2

[Snyk] Upgrade esbuild from 0.15.7 to 0.23.0

[Snyk] Upgrade esbuild from 0.15.7 to 0.23.0 #2

Workflow file for this run

name: Pull Request
on: [ pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 14.x, 16.x, 18.x ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Update NPM
run: npm i -g npm
- name: Install Lib Dependencies
run: npm ci
- name: Install Testing Lib Dependencies
working-directory: test/example
run: npm ci
- name: Build
run: npm run build --if-present
- name: Run tests
run: npm test
- name: Get Coverage Info
run: npm run coverage