Skip to content

Commit

Permalink
Merge pull request #195 from Zilliqa/devops-710
Browse files Browse the repository at this point in the history
feat: DEVOPS-710 move pipeline to GHA
  • Loading branch information
frankmeds committed Jul 11, 2023
2 parents 28cfdfd + 572948e commit b729f71
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on:
push:

jobs:
build:
name: CI
runs-on: ubuntu-latest
steps:

- name: Checkout scm
uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm

- name: Run test
run: |
./ci_scilla_type_check.sh && npm i && npm test
File renamed without changes.

0 comments on commit b729f71

Please sign in to comment.