chore(deps-dev): bump esbuild from 0.18.16 to 0.19.2 #1838
Workflow file for this run
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: Test | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["**"] | |
env: | |
# HACK: Dependabot uses Node.js 16.20.1 and npm 8.19.4, so `engine-strict=true` in `.npmrc` fails Dependabot. | |
# See https://github.com/ybiquitous/npm-audit-fix-action/network/updates/689567062 | |
npm_config_engine_strict: true | |
jobs: | |
unit: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: .node-version | |
cache: npm | |
- run: npm --global install npm@latest | |
- run: npm ci | |
- run: git diff --exit-code # check dist/ | |
- run: npm test --ignore-scripts | |
smoke: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: ./ | |
lint: | |
uses: ybiquitous/.github/.github/workflows/nodejs-lint-reusable.yml@main |