Skip to content

Commit

Permalink
Merge branch 'master' into kireiev/feat/migrate_enzyme_to_RTL
Browse files Browse the repository at this point in the history
  • Loading branch information
KyryloKireiev authored Sep 12, 2024
2 parents c06d2aa + 6a34cfb commit 7f935cb
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,14 @@ jobs:
run: npm run compile-prod

- name: Run Coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true

- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_OUTPUT
id: extract_branch

- name: Preview semantic-release version
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,11 @@ jobs:
- name: Create Build
run: npm run compile-prod

- name: Run Coverage
uses: codecov/codecov-action@v2
- name: Coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false

- name: Release Package
env:
Expand Down
16 changes: 16 additions & 0 deletions catalog-info.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# This file records information about this repo. Its use is described in OEP-55:
# https://open-edx-proposals.readthedocs.io/en/latest/processes/oep-0055-proc-project-maintainers.html

apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: 'cookie-policy-banner'
description: "The openedx cookie policy banner React component"
links:
- url: "https://github.com/openedx/frontend-component-cookie-policy-banner/blob/master/README.md"
title: "Documentation"
icon: "Web"
spec:
owner: group:cookie-policy-banner-maintainers
type: 'library'
lifecycle: 'production'

0 comments on commit 7f935cb

Please sign in to comment.