Skip to content

Commit

Permalink
Add GitHub CI
Browse files Browse the repository at this point in the history
  • Loading branch information
0xJem committed Jul 17, 2024
1 parent d6bcb6e commit 4bb2b06
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: test

on:
push:
branches:
- master
pull_request:

jobs:
check:
strategy:
fail-fast: true

name: GUni
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v2

- name: Install Dependencies
run: |
yarn install
shell: bash

- name: Run lint check
run: pnpm run lint:check

- name: Build Solidity Contracts
run: |
yarn compile
id: build

- name: Run Tests
run: |
yarn test
id: test

0 comments on commit 4bb2b06

Please sign in to comment.