Skip to content

Commit

Permalink
🚧 chore(ci): update changelog commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
gleisonkz committed Apr 22, 2022
1 parent a5a03b6 commit 22ff3e7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 23 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
with:
node-version: '16.2.0'

- name: 🔧 Install
- name: 🔧 Install dependencies
run: npm ci

- name: 🧪 Tests
- name: 🧪 Run Tests
run: npm run test

- name: 🚀 Release
- name: 🚀 Publish Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand All @@ -36,4 +36,4 @@ jobs:

- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: ':pencil2: docs: update changelog'
commit_message: ':robot: chore(release): update changelog [skip ci]'
31 changes: 12 additions & 19 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,32 +6,25 @@ jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x, 13.x, 14.x, 15.x]

steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 2

- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: '16.2.0'

- name: Install dependencies
run: npm install
- name: 🔧 Install dependencies
run: npm ci

- name: Run tests
- name: 🧪 Run Tests and Generate Coverage
run: npm run coverage

- name: Upload coverage to Codecov
- name: 📁 Upload coverage to Codecov
- uses: codecov/codecov-action@v2
with:
directory: ./coverage
files: ./cobertura-coverage.xml
name: codecov-umbrella # optional
fail_ci_if_error: true
files: ./coverage1.xml,./coverage2.xml # optional
flags: unittests # optional
name: cobertura-coverage# optional
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)

0 comments on commit 22ff3e7

Please sign in to comment.