Skip to content

chore(deps): update dependency eslint to v8.57.0 - autoclosed #1487

chore(deps): update dependency eslint to v8.57.0 - autoclosed

chore(deps): update dependency eslint to v8.57.0 - autoclosed #1487

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: Push/Pull Development
on:
push:
branches:
- '**' # matches every branch
- '!master' # excludes master
pull_request:
branches:
- '**' # matches every branch
- '!master' # excludes master
jobs:
lint-test-generate-build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [14.x]
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
- name: Setup Node and Install Depedencies
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: yarn --frozen-lockfile
- name: Lint and Test
run: |
yarn lint
yarn test
- name: Build Nuxt
run: yarn build
- name: Generate Nuxt
run: yarn generate
- name: Generate Github Pages
run: yarn generate:gh-pages
- name: Upload Coverage
uses: codecov/codecov-action@v2
with:
flags: unittests, dev, push, pull # optional