From 0ac4e367fedde95570fcc1295d24a11e666f9460 Mon Sep 17 00:00:00 2001 From: Phillip Lorenzo Date: Tue, 3 Dec 2019 10:08:16 -0800 Subject: [PATCH 1/2] Create actions.yml --- .github/workflows/actions.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/actions.yml diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml new file mode 100644 index 00000000..b2340b24 --- /dev/null +++ b/.github/workflows/actions.yml @@ -0,0 +1,17 @@ +name: CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Run a one-line script + run: echo Hello, world! + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project. From c5c68d85075662e9b7986857012a4fdc8a8e74d7 Mon Sep 17 00:00:00 2001 From: pllearns Date: Mon, 9 Dec 2019 15:02:04 -0800 Subject: [PATCH 2/2] add actual yarn scripts --- .github/workflows/actions.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index b2340b24..0aa7ba88 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -9,9 +9,9 @@ jobs: steps: - uses: actions/checkout@v1 - - name: Run a one-line script - run: echo Hello, world! - - name: Run a multi-line script - run: | - echo Add other actions to build, - echo test, and deploy your project. + - name: Install + run: yarn install + - name: Build + run: yarn build + - name: Test + run: yarn test \ No newline at end of file