Skip to content

Transactions fix

Transactions fix #15

Workflow file for this run

on:
pull_request:
branches:
- main
jobs:
test_components:
permissions:
contents: read
actions: read
runs-on: ubuntu-latest
name: test shared components
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Node Install
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm exec nx run shared-budgie-components:test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}