CI: Replace Travis CI with GitHub Actions

This commit is contained in:
vimux 2021-01-05 12:54:20 -05:00
parent b25468d705
commit 48b25ca96f
No known key found for this signature in database
GPG key ID: 5A34FDC4EE832E34
2 changed files with 58 additions and 11 deletions

58
.github/workflows/ci-test.yml vendored Normal file
View file

@ -0,0 +1,58 @@
name: Test
on:
push:
branches:
- master
paths-ignore:
- "README.md"
pull_request:
paths-ignore:
- "README.md"
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- '10.x'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install npm dependencies
run: npm ci
- name: Lint
run: npm run lint
test-hugo:
runs-on: ubuntu-latest
strategy:
matrix:
hugo:
- '0.54.0' # min version
- '0.58.2' # https://github.com/gohugoio/hugoThemes/issues/682
- '0.59.1' # last major version without goldmark renderer
- '0.60.1' # first major version with goldmark renderer
- '0.76.5' # https://github.com/gohugoio/hugo/issues/7822
- 'latest'
fail-fast: true
steps:
- uses: actions/checkout@v2
# https://github.com/peaceiris/actions-hugo (community action)
- name: Run Hugo ${{ matrix.hugo }}
uses: peaceiris/actions-hugo@v2
with:
hugo-version: ${{ matrix.hugo }}
# extended: true
- name: Build with Hugo ${{ matrix.hugo }}
working-directory: exampleSite
run: HUGO_THEME="Binario" hugo --themesDir ../.. --i18n-warnings -v

View file

@ -1,11 +0,0 @@
language: node_js
node_js:
- "10"
sudo: false
script:
- npm run lint
branches:
only:
- master