Skip to content

doc: update to the latest version #55

doc: update to the latest version

doc: update to the latest version #55

Workflow file for this run

name: ci
on:
push:
branches-ignore: master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
cache: pnpm
- name: Install Dependencies
run: pnpm install
- name: run the tests
run: pnpm test:coverage
- name: build the action
run: pnpm build
- name: get wallet address
uses: ./
with:
command: address
private-key: ${{secrets.ARWEAVE_PRIVATE_KEY}}
- name: simulate an upload
uses: ./
with:
command: upload
directory: build/
private-key: ${{secrets.ARWEAVE_PRIVATE_KEY}}
dry-run: true
network: arweave.net