Skip to content

chore(deps): bump webpack-dev-middleware, @vue/cli-plugin-babel, @vue/cli-plugin-eslint, @vue/cli-plugin-router, @vue/cli-plugin-unit-jest, @vue/cli-plugin-vuex, @vue/cli-service and @vue/eslint-config-standard #1558

chore(deps): bump webpack-dev-middleware, @vue/cli-plugin-babel, @vue/cli-plugin-eslint, @vue/cli-plugin-router, @vue/cli-plugin-unit-jest, @vue/cli-plugin-vuex, @vue/cli-service and @vue/eslint-config-standard

chore(deps): bump webpack-dev-middleware, @vue/cli-plugin-babel, @vue/cli-plugin-eslint, @vue/cli-plugin-router, @vue/cli-plugin-unit-jest, @vue/cli-plugin-vuex, @vue/cli-service and @vue/eslint-config-standard #1558

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12, 14, 15]
steps:
- uses: actions/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm run lint -- --no-fix
- run: npm run test:unit
- run: npm run test:e2e