-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from victorsoares96/ci/pipelines
👷 ci(gh-actions): added gh workflows
- Loading branch information
Showing
5 changed files
with
6,926 additions
and
23,450 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Pull Request | ||
|
||
on: | ||
pull_request: | ||
paths-ignore: | ||
- 'README.md' | ||
- 'LICENSE' | ||
- '.editorconfig' | ||
|
||
jobs: | ||
validate: | ||
name: "Validate" | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js 16.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "16.x" | ||
|
||
- name: Install dependencies | ||
run: yarn --frozen-lockfile | ||
|
||
- name: Linting | ||
run: yarn lint | ||
|
||
- name: Type Check | ||
run: yarn type-check | ||
|
||
# - name: Unit Testing | ||
# run: yarn test:coverage | ||
|
||
# - name: Upload Coverage | ||
# uses: codecov/codecov-action@v3 | ||
# with: | ||
# token: ${{secrets.CODECOV_TOKEN}} # not required for public repos | ||
# directory: coverage | ||
# fail_ci_if_error: true |
Oops, something went wrong.