Skip to content

build(deps-dev): bump @types/webpack from 4.41.6 to 4.41.7 #342

build(deps-dev): bump @types/webpack from 4.41.6 to 4.41.7

build(deps-dev): bump @types/webpack from 4.41.6 to 4.41.7 #342

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v1
- name: Setup
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: |
npm install
- name: Lint
run: |
npm run lint
- name: Test
env:
CI: true
COVERALLS_GIT_BRANCH: ${{ github.ref }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: |
npm test -- --ci --coverage
npm run coveralls
- uses: actions/upload-artifact@v1
if: failure()
with:
name: snapshot-diff
path: tests/__image_snapshots__/__diff_output__
- name: Build
run: |
npm run build
- name: Deploy
if: matrix.node-version == '12.x' && github.ref == 'refs/heads/master'
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm run release