aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
blob: d1859e2c5efbe7af30ccd9bc726e0d793a242ecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
on: [ push, pull_request ]

jobs:
  build-and-test:
    runs-on: ubuntu-latest
    name: Build & run tests
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - uses: actions/setup-node@v2
        with:
          node-version: '16.0.0'
      - run: npm install
      - name: Typescript compiler
        uses: stepek/tsc-action@master
      - name: Run tests
        run: npm test


  automerge:
    needs: [ build-and-test ]
    runs-on: ubuntu-latest
    steps:
      - uses: fastify/github-action-merge-dependabot@v2.1.1
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          target: minor