aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test.yaml
blob: 6f7fd9db09d200e784900b824ff11a5708967be2 (plain) (blame)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Test Deno Module

on:
  push:
    branches: [master]
  pull_request:
    branches: [master]

jobs:
  test:
    runs-on: ubuntu-latest

    strategy:
      matrix:
        deno_version: [1.2.0]

    steps:
      - name: Git Checkout Deno Module
        uses: actions/checkout@v2
      - name: Use Deno Version ${{ matrix.deno_version }}
        uses: denolib/setup-deno@master
        with:
          deno-version: ${{ matrix.deno_version }}
      # - name: Format check Deno Module
      #   run: deno fmt --check
      - name: Lint Deno Module
        run: deno lint --unstable
      - uses: mirromutth/mysql-action@v1.1
        with:
          mysql database: 'github'
          mysql root password: 'github'
          mysql user: 'github'
          mysql password: 'github'
      - run: |
          echo 'DEBUG=2' > .env
          echo 'PORT=8080' >> .env
          echo 'DBUser="github"' >> .env
          echo 'DBPassword="github"' >> .env
          echo 'DBName="github"' >> .env
          echo 'DBHost="localhost"' >> .env
      - name: Test Deno Module
        run: ./run