f6d96ab2b8
Bumps the gh-actions group with 1 update: [actions/setup-node](https://github.com/actions/setup-node). - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
45 lines
823 B
YAML
45 lines
823 B
YAML
name: "CI"
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- "production"
|
|
- "docs"
|
|
paths-ignore:
|
|
- ".github/**"
|
|
- "!.github/workflows/ci.yml"
|
|
- ".gitignore"
|
|
- "docs/**"
|
|
- "README.md"
|
|
- "LICENSE"
|
|
pull_request:
|
|
paths:
|
|
- "**"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
ruby: [2.7, 3]
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0 # for posts's lastmod
|
|
|
|
- name: Setup Ruby
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: ${{ matrix.ruby }}
|
|
bundler-cache: true
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
|
|
- name: Build Assets
|
|
run: npm i && npm run build
|
|
|
|
- name: Test Site
|
|
run: bash tools/test
|