diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml new file mode 100644 index 000000000..1e44276d3 --- /dev/null +++ b/.github/workflows/development.yml @@ -0,0 +1,28 @@ +name: Development + +on: + pull_request: + types: + - opened + - edited + - synchronize + - reopened + push: + workflow_call: + +jobs: + test: + name: Test application + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - name: "Checkout repository" + uses: actions/checkout@v4 + + - name: "Setup node" + uses: actions/setup-node@v4 + with: + node-version: 16 + + - name: "Run tests" + run: npm test