Bump esbuild from 0.17.14 to 0.18.17 #4660
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: 'Validate' | |
on: | |
push: | |
branches: [main, 'release/**', 'feature/**'] | |
pull_request: | |
branches: [main, 'release/**', 'feature/**'] | |
jobs: | |
check-yarn-lock-registry: | |
name: 'Validate yarn.lock' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js 18 | |
uses: actions/[email protected] | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
- name: Install Dependencies | |
run: yarn --frozen-lockfile | |
- name: Check yarn.lock registry url | |
run: yarn validate-lockfile |