Skip to content

Commit

Permalink
Add genesis workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
scorbajio authored and acolytec3 committed Oct 9, 2023
1 parent 10c26db commit 377e1a5
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/genesis-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: genesis
on:
push:
branches: [master, develop]
tags: ['*']
pull_request:
types: [opened, reopened, synchronize]
workflow_dispatch:

env:
cwd: ${{github.workspace}}/packages/genesis

defaults:
run:
working-directory: packages/genesis

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
test-genesis:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- run: npm ci --omit=peer
working-directory: ${{github.workspace}}

- run: npm run lint
- run: npm run test:node # Only run node tests for now until vitest browser test issues are sorted out

0 comments on commit 377e1a5

Please sign in to comment.