Skip to content

Commit

Permalink
Merge pull request #110 from White-Whale-Defi-Platform/feat/ci-cd-add…
Browse files Browse the repository at this point in the history
…ition

feat: basic ci/cd flow
  • Loading branch information
0xFable authored Nov 16, 2022
2 parents 2dd9d60 + 9cc6e9b commit 8774de2
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/Basic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Based on https://github.com/actions-rs/example/blob/master/.github/workflows/quickstart.yml

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

name: Basic

jobs:

test_and_lint:
name: Test and lint code
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Use Node.js 17.3.0
uses: actions/setup-node@v3
with:
node-version: 17.3.0
- name: Install dependencies
run: yarn install
- run: yarn build
- run: yarn prettier
# - run: yarn test

0 comments on commit 8774de2

Please sign in to comment.