Skip to content

fix: Gemfile & Gemfile.lock to reduce vulnerabilities #26

fix: Gemfile & Gemfile.lock to reduce vulnerabilities

fix: Gemfile & Gemfile.lock to reduce vulnerabilities #26

Workflow file for this run

name: GitHub Actions CI

Check failure on line 1 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tests.yml

Invalid workflow file

(Line: 5, Col: 17): A sequence was not expected
on:
push:
branches: master
pull_request: []
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v2.3.4
- name: Set up Ruby
uses: actions/setup-ruby@v1
- name: Set up Node
uses: actions/setup-node@v2.1.5
- name: Restore bundler cache
uses: actions/cache@v2.1.4
with:
path: vendor/gems
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: ${{ runner.os }}-gems-
- name: Bootstrap
run: script/bootstrap
- name: Tests
run: script/test