Skip to content

Commit

Permalink
Merge pull request #19 from victorsoares96/ci/pipelines
Browse files Browse the repository at this point in the history
👷 ci(gh-actions): added gh workflows
  • Loading branch information
victorsoares96 authored Sep 4, 2022
2 parents 7234c98 + 786a5d2 commit d9e4638
Show file tree
Hide file tree
Showing 5 changed files with 6,926 additions and 23,450 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/pull-request.yml
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
Loading

0 comments on commit d9e4638

Please sign in to comment.