diff --git a/.github/workflows/Basic.yml b/.github/workflows/Basic.yml new file mode 100644 index 00000000..a8f4fcb2 --- /dev/null +++ b/.github/workflows/Basic.yml @@ -0,0 +1,27 @@ +# Based on https://github.com/actions-rs/example/blob/master/.github/workflows/quickstart.yml + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +name: Basic + +jobs: + + test_and_lint: + name: Test and lint code + runs-on: ubuntu-latest + steps: + - name: Checkout sources + uses: actions/checkout@v3 + - name: Use Node.js 17.3.0 + uses: actions/setup-node@v3 + with: + node-version: 17.3.0 + - name: Install dependencies + run: yarn install + - run: yarn build + - run: yarn prettier + # - run: yarn test \ No newline at end of file