build(deps): update dependency webpack to v5 [security] - autoclosed #1322
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: CI | ||
on: [push, pull_request] | ||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: 12.x | ||
steps: | ||
- name: Checkout git repo | ||
uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Install dependencies with npm | ||
run: npm install | ||
- name: Build with Vue CLI | ||
run: npm run build | ||
env: | ||
CI: true | ||
lint: | ||
name: Lint (ESLint) | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: 12.x | ||
steps: | ||
- name: Checkout git repo | ||
uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Install dependencies with npm | ||
run: npm install | ||
- name: Lint with Vue CLI and ESLint | ||
run: npm run lint | ||
env: | ||
CI: true |