chore(loader): introduced an argument to determine if metering is applied #195
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: β¨ Test & Deploy AO Wasm Loader | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "loader/**" | |
push: | |
branches: | |
- main | |
paths: | |
- "loader/**" | |
# Perform a release using a workflow dispatch | |
workflow_dispatch: | |
inputs: | |
version: | |
description: "semver version to bump to" | |
required: true | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
test: | |
if: github.event_name != 'workflow_dispatch' | |
runs-on: ubuntu-latest | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: β Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: π₯ Download deps | |
working-directory: loader | |
run: | | |
npm i | |
- name: β‘ Run Tests | |
working-directory: loader | |
run: | | |
npm test | |
env: | |
CI: true | |
test-integration: | |
if: github.event_name != 'workflow_dispatch' | |
runs-on: ubuntu-latest | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
- name: β Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: π₯ Download deps | |
working-directory: loader | |
run: | | |
npm i | |
- name: β‘ Run Tests | |
working-directory: loader | |
run: | | |
npm run test:integration | |
env: | |
CI: true | |
release: | |
# Releases are performed via a workflow dispatch | |
if: github.event_name == 'workflow_dispatch' | |
runs-on: ubuntu-latest | |
concurrency: | |
group: release | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: main | |
- name: β Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
registry-url: "https://registry.npmjs.org" | |
- name: π Env | |
run: | | |
echo "Event name: ${{ github.event_name }}" | |
echo "Git ref: ${{ github.ref }}" | |
echo "GH actor: ${{ github.actor }}" | |
echo "SHA: ${{ github.sha }}" | |
VER=`node --version`; echo "Node ver: $VER" | |
VER=`npm --version`; echo "npm ver: $VER" | |
- name: π€ Set Git User | |
run: | | |
git config --global user.name "${{ github.actor }}" | |
git config --global user.email "${{ github.actor }}@users.noreply.github.com" | |
- name: β Bump | |
id: bump | |
uses: hyper63/[email protected] | |
with: | |
bump-to: ${{ github.event.inputs.version }} | |
package: loader | |
- name: β¬οΈ Push | |
run: | | |
git push | |
git push --tags | |
- name: π₯ Download deps | |
working-directory: loader | |
run: | | |
npm i | |
- name: π¦ Publish to NPM | |
working-directory: loader | |
run: | | |
npm run build | |
npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |