From 6ae80b8d9ca5f444f3e70ebc3d54c4635bbec7e5 Mon Sep 17 00:00:00 2001 From: Daniel Hreben Date: Fri, 29 May 2020 22:54:45 +1000 Subject: [PATCH 1/2] Add branch build --- .github/workflows/blank.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/blank.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 0000000..242e456 --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,20 @@ +name: Build + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 12 + - run: yarn --frozen-lockfile + - run: yarn lint:check + - run: yarn build + - run: yarn test From 08eaca77f2c415d5ef9728b33b0f942de1e4f6f5 Mon Sep 17 00:00:00 2001 From: Daniel Hreben Date: Fri, 29 May 2020 22:55:08 +1000 Subject: [PATCH 2/2] Rename blank.yml to branch-build.yml --- .github/workflows/{blank.yml => branch-build.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{blank.yml => branch-build.yml} (100%) diff --git a/.github/workflows/blank.yml b/.github/workflows/branch-build.yml similarity index 100% rename from .github/workflows/blank.yml rename to .github/workflows/branch-build.yml