Skip to content

build(deps): bump @actions/core from 1.11.1 to 3.0.0 #94

build(deps): bump @actions/core from 1.11.1 to 3.0.0

build(deps): bump @actions/core from 1.11.1 to 3.0.0 #94

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
jobs:
test-typescript:
name: TypeScript Tests
runs-on: ${{ vars.RUNNER }}
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v6
- name: Setup Node.js
id: setup-node
uses: ubicloud/setup-node@v4
with:
node-version-file: .node-version
cache: npm
- name: Install Dependencies
id: npm-ci
run: npm ci
- name: Check Format
id: npm-format-check
run: npm run format:check
- name: Lint
id: npm-lint
run: npm run lint
- name: Test
id: npm-ci-test
run: npm run ci-test
test-action:
name: GitHub Actions Test
runs-on: ${{ vars.RUNNER }}
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v6
- name: Test Local Action
id: test-action
uses: ./
with:
fireblocks-secret: |
secret
newline
fireblocks-api-key: 'api-key'
fireblocks-endpoint: 'https://sandbox-api.fireblocks.io'
commitment: 'finalized'
solana-rpc-url: 'https://api.devnet.solana.com'
poll-timeout: '1200'
poll-interval: '10'
set-env-vars: 'true'
- name: Print Output
id: output
run: |
ls -lR ~/.config/fireblocks ~/.config/solana
cat ~/.config/fireblocks/default.toml
echo ---
cat ~/.config/fireblocks/sandbox.toml
echo ---
cat ~/.config/fireblocks/sandbox.pem
echo ---
cat ~/.config/solana/id.json
echo ---
cat ~/.config/solana/cli/config.yml
- name: Check Outputs
run: |
echo cat ${{ steps.test-action.outputs.fireblocks-config-path }}
cat ${{ steps.test-action.outputs.fireblocks-config-path }}
echo cat ${{ steps.test-action.outputs.solana-config-path }}
cat ${{ steps.test-action.outputs.solana-config-path }}
- name: Check Env
run: |
if ! env | grep --quiet FIREBLOCKS; then
echo "FIREBLOCKS environment variable is not set"
exit 1
fi