Skip to content

turn off daily build #90

turn off daily build

turn off daily build #90

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: daily-build-check
# on:
# push:
# branches: ["master"]
# pull_request:
# branches: ["master"]
# schedule:
# - cron: "0 3 * * *"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install packages
working-directory: ./frontend
run: |
npm i
- name: Run build
working-directory: ./frontend
run: |
npm run build --if-present
- name: Run tests & coverage
working-directory: ./frontend
run: |
npm run coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
path: /frontend/coverage