Skip to content

Final Critical Domain Article Edits #1558

Final Critical Domain Article Edits

Final Critical Domain Article Edits #1558

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ main ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
env:
BUNDLE_JOBS: 3
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Install Node
uses: actions/setup-node@v4
with:
node-version-file: '.tool-versions'
cache: yarn
- name: Install JS Deps
run: yarn install --frozen-lockfile
- name: Run Tests
run: bundle exec rake