Skip to content

chore(deps-dev): bump @biomejs/biome from 2.4.7 to 2.4.8 #2414

chore(deps-dev): bump @biomejs/biome from 2.4.7 to 2.4.8

chore(deps-dev): bump @biomejs/biome from 2.4.7 to 2.4.8 #2414

Workflow file for this run

name: 'build-test'
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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@v3
with:
fetch-depth: 0
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run unit tests
run: yarn test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/lcov.info
integration-tests:
runs-on: ubuntu-latest
steps:
- name: Install git
run: |
sudo apt-get update
sudo apt-get install -y git
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn build
- name: Clear dependencies
run: rm -rf node_modules
- name: Run integration tests
uses: ./
with:
base_branch: origin/main