Skip to content

Commit

Permalink
chore(ci): implement main pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
guligon90 committed Apr 11, 2022
1 parent 57f0bbc commit 0be2e4d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
with:
cmd: install # will run `yarn install` command
- uses: borales/[email protected]
with:
cmd: lint # will run `yarn lint` command
- uses: borales/[email protected]
with:
cmd: test # will run `yarn test` command
- uses: borales/[email protected]
with:
cmd: coverage # will run `yarn coverage` command

0 comments on commit 0be2e4d

Please sign in to comment.