chore(deps): update dependency jest-localstorage-mock to v2.4.26 #1778
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
# 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 |