From 0be2e4de939125ccd3ce0f81a6a48fbb942eacf3 Mon Sep 17 00:00:00 2001 From: Guilherme Lima Goncalves Date: Mon, 11 Apr 2022 18:27:08 -0300 Subject: [PATCH] chore(ci): implement main pipeline --- .github/workflows/main.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..0fd1434 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,24 @@ +name: empirical-tc-ts main CI pipeline +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] +jobs: + build: + name: Quality Assurance + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: borales/actions-yarn@v2.3.0 + with: + cmd: install # will run `yarn install` command + - uses: borales/actions-yarn@v2.3.0 + with: + cmd: lint # will run `yarn lint` command + - uses: borales/actions-yarn@v2.3.0 + with: + cmd: test # will run `yarn test` command + - uses: borales/actions-yarn@v2.3.0 + with: + cmd: coverage # will run `yarn coverage` command