Merge pull request #1263 from SnickerdoodleLabs/feature/add-generateE… #651
This file contains hidden or 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: Extension Build | |
on: | |
push: | |
branches: develop | |
jobs: | |
build_extension: | |
name: Setup, Build, and Publish | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: scrapping coin list | |
run: |- | |
python infra/scrapper/coin_list_gen.py | |
- name: scrapping price list | |
run: |- | |
python infra/scrapper/coin_price_gen.py | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: |- | |
cd packages/browserExtension && YARN_CHECKSUM_BEHAVIOR=update yarn && yarn build-dev | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: dev-extension | |
path: packages/browserExtension/build-dev |