From be23b4cc5a9a391b7dbe837429c95e2b701fe055 Mon Sep 17 00:00:00 2001 From: "AppFlowy.IO" <86001920+appflowy@users.noreply.github.com> Date: Sat, 20 Nov 2021 09:53:37 +0800 Subject: [PATCH] Create frontend_test.yml --- .github/workflows/frontend_test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/frontend_test.yml diff --git a/.github/workflows/frontend_test.yml b/.github/workflows/frontend_test.yml new file mode 100644 index 0000000000..ffcd451925 --- /dev/null +++ b/.github/workflows/frontend_test.yml @@ -0,0 +1,18 @@ +name: Frontend_test + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + runs-on: macOS-latest + steps: + - uses: actions/checkout@v2 + - name: Run tests + run: cd frontend/rust-lib && cargo test