Skip to content

Commit

Permalink
test: use codecov/codecov-action (#367)
Browse files Browse the repository at this point in the history
  • Loading branch information
Layouwen committed Aug 13, 2024
1 parent d14022f commit 76ed866
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions .github/workflows/react-component-ci.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
name: CI

on:
push:
branches: [master]
pull_request:
branches: [master]
on: ['push', 'pull_request']

jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master
uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
Expand All @@ -24,14 +20,15 @@ jobs:
key: lock-${{ github.sha }}

- name: create package-lock.json
run: npm i --package-lock-only
run: npm i --package-lock-only --ignore-scripts

- name: hack for singe file
run: |
if [ ! -d "package-temp-dir" ]; then
mkdir package-temp-dir
fi
cp package-lock.json package-temp-dir
- name: cache node_modules
id: node_modules_cache_id
uses: actions/cache@v4
Expand All @@ -41,7 +38,7 @@ jobs:

- name: install
if: steps.node_modules_cache_id.outputs.cache-hit != 'true'
run: npm i
run: npm ci

lint:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -110,9 +107,9 @@ jobs:
- name: coverage
run: npm test -- --coverage

- uses: codecov/codecov-action@v4
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true # optional (default = false)
token: ${{ secrets.CODECOV_TOKEN }} # required
token: ${{ secrets.CODECOV_TOKEN }}

needs: setup

0 comments on commit 76ed866

Please sign in to comment.