Skip to content

Byte to hex string conversion optimizations #606

Byte to hex string conversion optimizations

Byte to hex string conversion optimizations #606

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
lint:
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
- run: npm ci
- run: npm run lint
verify-web:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
- run: npm ci
- run: npm run verify:web
verify-android:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
- uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu'
- run: npm ci
- run: npm run verify:android
verify-ios:
runs-on: macos-13
steps:
# https://github.com/actions/virtual-environments/blob/main/images/macos/macos-13-Readme.md#xcode
- run: sudo xcode-select --switch /Applications/Xcode_15.2.app
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
- run: npm ci
- run: npm run verify:ios