Bump ad-m/github-push-action from 9a2e3c14aaecf56d5816dc3a54514f82050820b2 to 29f05e01bb17e6f28228b47437e03a7b69e1f9ef #555
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |