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