Skip to content

Commit

Permalink
Add CI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
howardwu committed Feb 7, 2021
1 parent cfff8f8 commit 48fba6f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI
on:
pull_request:
push:
branches:
- main

jobs:
check:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-website-${{ hashFiles('**/Cargo.lock') }}

- name: Install and Build
run: |
cd parser
yarn install
yarn ci

0 comments on commit 48fba6f

Please sign in to comment.