Skip to content

Merge branch 'main' of https://github.com/hack4impact-upenn/achieve-now #496

Merge branch 'main' of https://github.com/hack4impact-upenn/achieve-now

Merge branch 'main' of https://github.com/hack4impact-upenn/achieve-now #496

Workflow file for this run

name: Lint and Test
on: push
jobs:
lint:
name: Run linting
runs-on: ubuntu-latest # Specifies the VM to run the workflow on
steps:
- uses: actions/checkout@v2 # Checks out the the project repo
- run: |
yarn install
yarn lint && yarn prettier-check
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
yarn install
yarn test