Skip to content

Merge pull request #216 from RunOnFlux/evm #583

Merge pull request #216 from RunOnFlux/evm

Merge pull request #216 from RunOnFlux/evm #583

Workflow file for this run

name: Build And Upload Extension Zip
on:
push:
branches: [master]
tags:
- v1.*
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
# - uses: actions/cache@v3
# with:
# path: node_modules
# key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }}
- run: yarn install
- run: yarn build
- uses: actions/upload-artifact@v4
with:
path: dist/*