mirror of
https://github.com/andrei0x309/clear-wallet.git
synced 2024-11-03 23:21:24 +00:00
39 lines
947 B
YAML
39 lines
947 B
YAML
# Not supported due to compatibility issues with Bun Http2 stdlib
|
|
name: Node Main Workflow
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'Version'
|
|
required: true
|
|
|
|
jobs:
|
|
run-node-script:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: CI
|
|
steps:
|
|
- name: Checkout Action
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node Action
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: Install Dependencies
|
|
run: yarn install
|
|
|
|
- name: Run Node Script - Update
|
|
if: github.event_name == 'workflow_dispatch'
|
|
run: yarn tsx index.ts '${{ toJSON(secrets) }}' '${{ toJSON(github.event) }}' update
|
|
|
|
- name: Run Node Script - Push
|
|
if: github.event_name == 'push'
|
|
run: yarn tsx index.ts '${{ toJSON(secrets) }}' '${{ toJSON(github.event) }}' push
|