yomichan/.github/workflows/ci.yml
toasted-nutbread e637408b4a
Auto update manifest version (#1724)
* Update manifest to auto-fill the version based on most recent git tag

* Install git in the CI pipeline
2021-05-31 14:20:40 -04:00

47 lines
968 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Set up git
run: |
sudo apt-get install -y git
git --version
git fetch origin $(git branch --show-current) --unshallow --tags > /dev/null 2> /dev/null
git status
git describe
- 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: Build
run: npm run test-build