Skip to content

Use GitHub CI

Use GitHub CI #1

Workflow file for this run

name: Test
on: push
env:

Check failure on line 5 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 5, Col: 5): Unexpected value ''
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
env:
RAILS_ENV: test
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler: 1.17.2
bundler-cache: true
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: '14.x'
- name: Install bower
run: npm install -g bower
- name: Install bowndler packages
run: bundle exec bowndler install && bundle exec bowndler update
- name: Run npm install
run: npm install
- name: Run cucumber tests
run: bundle exec cucumber
- name: Run tests
run: bundle exec rspec