[Snyk] Upgrade esbuild from 0.15.7 to 0.23.0 #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |