Skip to content
Open
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
201 changes: 0 additions & 201 deletions .circleci/config.yml

This file was deleted.

17 changes: 17 additions & 0 deletions .github/actions/setup-rust/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Setup Rust
description: Sets up Rust
runs:
using: "composite"
steps:
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

- name: Initialize Rustup
shell: bash
run: |
rustup show
13 changes: 13 additions & 0 deletions .github/actions/setup-yarn/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Setup Yarn
description: Sets up Yarn
runs:
using: "composite"
steps:
- uses: actions/setup-node@v4
with:
cache: 'yarn'

- name: yarn install
shell: bash
run: |
yarn install --immutable --check-cache
9 changes: 9 additions & 0 deletions .github/actions/use-build/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Use build
description: Uses the build artifacts
runs:
using: "composite"
steps:
- name: Download build
uses: actions/download-artifact@v4
with:
name: build
Loading
Loading