Skip to content

Commit

Permalink
misc: CI added
Browse files Browse the repository at this point in the history
  • Loading branch information
donosonaumczuk committed Dec 18, 2024
1 parent 73e7bcf commit 96c2fe9
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 34 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: ci

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

on:
push:
branches:
- master
- development
pull_request:
branches:
- master
- development
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependencies
run: yarn
- name: Compile Project
run: npx hardhat compile
34 changes: 0 additions & 34 deletions .github/workflows/test.yml

This file was deleted.

0 comments on commit 96c2fe9

Please sign in to comment.