Skip to content

Commit

Permalink
add build step to unit test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-burel committed Feb 23, 2021
1 parent 7c9e978 commit 66c8a5c
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/test_unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,24 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]
- run: npm i -g yarn # Not necessary on Github but useful to test locally with `act`
- run: yarn install --frozen-lockfile --check-files

# This workflow contains a single job called "build"
unit-test:
# The type of runner that the job will run on
runs-on: ubuntu-latest
needs: install
# This workflow contains a single job called "build"
#unit-test:
# The type of runner that the job will run on
# runs-on: ubuntu-latest
# needs: install

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Steps represent a sequence of tasks that will be executed as part of the job
# steps:
- run: yarn run test:unit

build:
runs-on: ubuntu-latest
needs: install

steps:
#build:
# runs-on: ubuntu-latest
# needs: install
#
# steps:
- run: yarn run build
# Runs a single command using the runners shell
#- name: Run a one-line script
Expand Down

0 comments on commit 66c8a5c

Please sign in to comment.