Skip to content

Commit

Permalink
Merge pull request #56 from lens-protocol/feat/ci
Browse files Browse the repository at this point in the history
feat: CI added
  • Loading branch information
donosonaumczuk authored Dec 18, 2024
2 parents 45c0715 + ff8de5a commit 0b251d3
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 34 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
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 Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- 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 0b251d3

Please sign in to comment.