Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 9 additions & 25 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,32 +9,13 @@ on:
- main

jobs:
build:
name: Checking build
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout Repo
uses: actions/checkout@v6

- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 25
cache: yarn

- name: Install Dependencies
run: yarn install --immutable

- name: Build
run: yarn build

test:
name: Running tests
integration:
name: Check everything
runs-on: ubuntu-24.04-arm
permissions:
id-token: write
steps:
- name: Checkout Repo
- name: Checkout repo
uses: actions/checkout@v6

- name: Setup Node.js
Expand All @@ -43,16 +24,19 @@ jobs:
node-version: 25
cache: yarn

- name: Install Dependencies
- name: Install dependencies
run: yarn install --immutable

- name: Execute Tests
- name: Run tests
run: |
node \
--test --test-reporter spec --test-reporter-destination=stdout \
--experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v6
with:
use_oidc: true

- name: Build and publish to pkg.pr.new
run: yarn pkg-pr-new publish
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@
"metro": "^0.83.3",
"mitata": "^1.0.34",
"os-browserify": "^0.3.0",
"pkg-pr-new": "^0.0.66",
"pretty-bytes": "^7.1.0",
"rimraf": "^6.1.2",
"tinybench": "^5.1.0",
Expand Down
Loading
Loading