Skip to content

Build And Check Frontend Packages #866

Build And Check Frontend Packages

Build And Check Frontend Packages #866

Workflow file for this run

name: Build And Check Frontend Packages
defaults:
run:
shell: bash -l {0}
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
schedule:
- cron: "0 2 * * 1-5" # run on weekdays at 2:00am UTC
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment.yml
- name: Lint
run: |
yarn
yarn run eslint:check
yarn run prettier:check
working-directory:
python/voici-core