Skip to content

chore(deps-dev): bump webpack from 5.42.0 to 5.76.0 #18

chore(deps-dev): bump webpack from 5.42.0 to 5.76.0

chore(deps-dev): bump webpack from 5.42.0 to 5.76.0 #18

Workflow file for this run

name: CI/CD
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Nodejs
uses: actions/setup-node@v1
with:
node-version: '14.x'
- name: Cache node modules
uses: actions/cache@v1
env:
cache-name: cache-node-modules
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install Dependencies
run: npm install
- name: Test
run: npm run test:coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true
- name: Build
run: npm run build
- name: Cypress run
uses: cypress-io/github-action@v2
with:
record: true
start: npm run start:serve
wait-on: 'http://localhost:5000'
command-prefix: 'percy exec -- npx'
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
- name: Deployment
if: ${{ github.ref == 'refs/heads/main' }}
uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_TENSORFLOWJS_REMOVE_BACKGROUND }}'
channelId: live
projectId: tensorflowjs-remove-background