Skip to content

fix: don't query for projects flagged as not billable #469

fix: don't query for projects flagged as not billable

fix: don't query for projects flagged as not billable #469

Workflow file for this run

name: Test (Frontend)
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CI: true
jobs:
lint:
name: Lint (Frontend)
runs-on: [ubuntu-latest]
strategy:
matrix:
target: [js, hbs]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
- name: Install dependencies
run: yarn --cwd=frontend install
- name: Lint ${{ matrix.target }}
run: yarn --cwd=frontend lint:${{ matrix.target }}
test:
name: Tests (Frontend)
needs: [lint]
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
- name: Install dependencies
run: yarn --cwd=frontend install
- name: Run tests
run: yarn --cwd=frontend test