From de6d4029ba2cd446319f4a30fb4d56b7c7c56666 Mon Sep 17 00:00:00 2001 From: "Jyotirmoy Bandyopadhyaya [Bravo68]" Date: Fri, 19 May 2023 01:39:18 +0530 Subject: [PATCH] Added Woodpeaker CI --- .gitea/workflows/testing.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/testing.yaml diff --git a/.gitea/workflows/testing.yaml b/.gitea/workflows/testing.yaml new file mode 100644 index 0000000..3781a9e --- /dev/null +++ b/.gitea/workflows/testing.yaml @@ -0,0 +1,16 @@ +name: Testing workflow +on: + - push + +jobs: + lint: + name: check and test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 16 + - run: npm install -g yarn + - run: yarn + - run: yarn build \ No newline at end of file