Correct govuk website root #2609
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: Test | |
on: [push] | |
env: | |
RAILS_ENV: test | |
jobs: | |
tests: | |
name: Run rspec and javascript tests | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:11.6-alpine | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: '' | |
ports: | |
- 5432:5432 | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7.2 | |
- name: Set up Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '14.x' | |
- name: Set up ruby gem cache | |
uses: actions/cache@v1 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- name: Install gems | |
run: | | |
bundle config path vendor/bundle | |
bundle install --jobs 20 --retry 3 | |
- name: Install yarn | |
run: npm install yarn -g | |
- name: Yarn cache | |
id: yarn-cache | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Set up yarn cache | |
uses: actions/cache@v1 | |
with: | |
path: ${{ steps.yarn-cache.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install node.js dependencies | |
run: yarn install | |
- name: Set up test database | |
run: bin/rails db:prepare | |
env: | |
DATABASE_URL: postgres://postgres:@localhost:5432/test | |
- name: Run rubocop | |
run: bundle exec rubocop | |
- name: Run tests | |
run: bundle exec rake | |
env: | |
DATABASE_URL: postgres://postgres:@localhost:5432/test |