chore(deps): bump micromatch from 4.0.5 to 4.0.8 #2013
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: javascript | |
on: | |
pull_request: | |
paths: | |
- '**/*.vue' | |
- '**/*.js' | |
- '**/*.scss' | |
- '.github/workflows/javascript.yml' | |
- 'package.json' | |
- 'yarn.lock' | |
push: | |
paths: | |
- '**/*.vue' | |
- '**/*.js' | |
- '**/*.scss' | |
- '.github/workflows/javascript.yml' | |
- 'package.json' | |
- 'yarn.lock' | |
jobs: | |
javascript-build: | |
name: Check javascript build | |
if: "!contains(github.event.commits[0].message, '[skip ci]') && !contains(github.event.commits[0].message, '[ci skip]')" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x, 16.x, 18.x, 20.x, 22.x] | |
steps: | |
- name: Checkout current revision | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Yarn install | |
run: yarn install | |
- name: Yarn build | |
run: yarn build | |
- name: Run ESLint | |
run: yarn eslint resources/js/**/*.js resources/js/**/*.vue |