aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
blob: c62c9893afa525f437f3ba227a7b1fa67ae47609 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: CI

permissions:
  contents: read

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout
        uses: actions/checkout@v3

      - name: Setup node
        uses: actions/setup-node@v3
        with:
          node-version-file: ".node-version"

      - name: Install dependencies
        run: npm ci

      - name: Lint
        run: npm run test-lint
        env:
          CI: true

      - name: Lint CSS
        run: npm run test-lint-css
        env:
          CI: true

      - name: Lint HTML
        run: npm run test-lint-html
        env:
          CI: true

      - name: Tests
        run: npm run test-code
        env:
          CI: true

      - name: Manifest
        run: npm run test-manifest
        env:
          CI: true

      - name: Validate manifest.json of the extension
        uses: cardinalby/schema-validator-action@c2da05377e89dd0c9b7be9420da0b3534b1efcce # pin@v1
        with:
          file: ext/manifest.json
          schema: "https://json.schemastore.org/chrome-manifest.json"

      - name: Build
        run: npm run test-build