Skip to content

Commit

Permalink
<CHORE> (fe): test
Browse files Browse the repository at this point in the history
  • Loading branch information
ha4219 committed Dec 7, 2022
1 parent d735d5a commit 40187b8
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: CI
on: [push]
on:
push:
branches:
- master

jobs:
build:
name: Test
name: Build && Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -23,10 +26,13 @@ jobs:
uses: borales/actions-yarn@v4
with:
cmd: build # will run `yarn build:prod` command
# - name: Test the app
# uses: borales/actions-yarn@v4
# with:
# cmd: test # will run `yarn test` command

- name: Run ls
run: ls
- name: Test the app
uses: borales/actions-yarn@v4
with:
cmd: test # will run `yarn test` command
# - name: Set Key
# env:
# PRIVATE_KEY: ${{ secrets.AWS_PRIVATE_KEY }}
# HOSTNAME : ${{ secrets.HOSTNAME }}
# USER_NAME : ${{ secrets.USER_NAME }}
# run

0 comments on commit 40187b8

Please sign in to comment.