Skip to content

build(deps): update dependency webpack to v5 #1297

build(deps): update dependency webpack to v5

build(deps): update dependency webpack to v5 #1297

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: 12.x

Check failure on line 13 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 13, Col: 23): Unexpected value '12.x' .github/workflows/ci.yml (Line: 36, Col: 23): Unexpected value '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