Skip to content

chore(deps-dev): Bump lint-staged from 15.3.0 to 15.4.1 (#989) #2256

chore(deps-dev): Bump lint-staged from 15.3.0 to 15.4.1 (#989)

chore(deps-dev): Bump lint-staged from 15.3.0 to 15.4.1 (#989) #2256

Workflow file for this run

name: 'build-test'
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
yarn --frozen-lockfile
- run: |
yarn all
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Install git
run: |
sudo apt-get update
sudo apt-get install -y git
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run tests
run: yarn test
- name: Upload coverage
uses: ./
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
repository_root_path: ${{github.workspace}}
collect_coverage: 'true'
coverage_file_patterns: |
coverage/lcov.info:lcov
integration-tests:
runs-on: ubuntu-latest
steps:
- name: Install git
run: |
sudo apt-get update
sudo apt-get install -y git
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run integration tests
uses: ./