Skip to content

Commit

Permalink
try this
Browse files Browse the repository at this point in the history
  • Loading branch information
emccorson committed Aug 29, 2024
1 parent 96860cd commit 037faef
Showing 1 changed file with 10 additions and 174 deletions.
184 changes: 10 additions & 174 deletions .github/workflows/deploy-wallet-at-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,75 +7,11 @@ env:
YARN_ENABLE_HARDENED_MODE: 0

jobs:
lint:
name: Lint
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install yarn dependencies
uses: ./.github/actions/yarn-cache

- name: Run ESLint
run: yarn lint:ci

unit-tests-js:
name: JS unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install yarn dependencies
uses: ./.github/actions/yarn-cache

- name: Restore Rust cache
uses: ./.github/actions/rust-cache
with:
cache-name: unit-tests-js

- name: Install protoc
run: sudo apt-get install -y protobuf-compiler

- name: Compile WASM
run: yarn wasm:build-test

- name: Run unit tests
id: run-unit-tests
run: yarn test:ci

unit-tests-wasm:
name: WASM unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Restore Rust cache
uses: ./.github/actions/rust-cache
with:
cache-name: unit-tests-wasm

- name: Install yarn dependencies
uses: ./.github/actions/yarn-cache

- name: Install protoc
run: sudo apt-get install -y protobuf-compiler

- name: Install wsrun
run: npm install -g wsrun

- name: Run unit tests
id: run-unit-tests
run: yarn test-wasm:ci

build-interface:
name: Build Namadillo
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Install yarn dependencies
uses: ./.github/actions/yarn-cache
Expand All @@ -96,113 +32,13 @@ jobs:
NAMADA_INTERFACE_NAMADA_CHAIN_ID: "internal-devnet-6be.86067e06a5"
NAMADA_INTERFACE_NAMADA_URL: "https://proxy.heliax.click/internal-devnet-6be.86067e06a5"

build-extension-chrome:
name: Build Chrome extension
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install yarn dependencies
uses: ./.github/actions/yarn-cache

- name: Restore Rust cache
uses: ./.github/actions/rust-cache
- name: Deploy to Netlify
uses: nwtgck/actions-netlify@v1.2.3
with:
cache-name: build-multicore

- name: Install protoc
run: sudo apt-get install -y protobuf-compiler

- name: Build WASM dependencies
working-directory: ./apps/extension
run: yarn wasm:build:multicore

- name: Build the extension
working-directory: ./apps/extension
run: yarn build:chrome

build-extension-firefox:
name: Build Firefox extension
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install yarn dependencies
uses: ./.github/actions/yarn-cache

- name: Restore Rust cache
uses: ./.github/actions/rust-cache
with:
cache-name: build

- name: Install protoc
run: sudo apt-get install -y protobuf-compiler

- name: Build WASM dependencies
working-directory: ./apps/extension
run: yarn wasm:build

- name: Build the extension
working-directory: ./apps/extension
run: yarn build:firefox

E2E-tests:
if: false
name: E2E tests
needs: [build-interface]
timeout-minutes: 60
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./apps/namadillo
steps:
- uses: actions/checkout@v4

- name: Install yarn dependencies
uses: ./.github/actions/yarn-cache

- uses: actions/setup-node@v2
with:
node-version: "18.x"

- name: Install wasm-pack
uses: jetli/wasm-pack-action@v0.3.0
with:
version: "v0.10.3"
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
id: run-playwright-tests
run: PLAYWRIGHT_BASE_URL=https://pull-request-${{ github.event.number }}--wallet-development-heliax-dev.netlify.app NETLIFY_SITE_PROTECTION_PASSWORD=${{ secrets.NETLIFY_SITE_PROTECTION_PASSWORD }} yarn playwright test
- uses: actions/upload-artifact@v2
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30

# Running yarn install in hardened mode here makes it safe to run the other
# jobs without hardened mode, which is good because hardened mode is slow.
# https://yarnpkg.com/features/security#hardened-mode
check-yarn-lock-poisoning:
name: Check for yarn.lock poisoning
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Check if yarn.lock changed
uses: dorny/paths-filter@v3
id: filter
with:
filters: |
lockfile:
- "yarn.lock"
- name: Check yarn.lock for lockfile poisoning
if: steps.filter.outputs.lockfile == 'true'
uses: ./.github/actions/yarn-cache
publish-dir: "./apps/namadillo/dist"
production-branch: main
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: "Merged PR ${{ github.event.number }} to main"
env:
YARN_ENABLE_HARDENED_MODE: 1
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_ACCESS_TOKEN_WALLET_PREVIEW }}
NETLIFY_SITE_ID: 2380782e-9b20-477a-bc27-b4e9d05e16f3

0 comments on commit 037faef

Please sign in to comment.