Skip to content

Bump webpack-dev-server from 3.11.3 to 5.1.0 in the webpack group #1053

Bump webpack-dev-server from 3.11.3 to 5.1.0 in the webpack group

Bump webpack-dev-server from 3.11.3 to 5.1.0 in the webpack group #1053

Workflow file for this run

name: CI
# TODO: Don't do this! Use GitHub's encrypted secrets and set the value of the
# variable as ${{ secrets.RAILS_MASTER_KEY }}
# Ref: https://docs.github.com/en/actions/reference/encrypted-secrets
env:
RAILS_MASTER_KEY: b8cc3ac9ab8a3280b03af3d29b2e50ca
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
test:
name: Ruby specs
runs-on: ubuntu-latest
env:
DATABASE_URL: postgres://postgres:postgres@localhost/ruby2-rails5-bootstrap-heroku_test
RAILS_ENV: test
services:
db:
image: postgres:12
ports: ['5432:5432']
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- uses: nanasess/setup-chromedriver@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.6.10'
bundler-cache: true
rubygems: latest
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '16'
cache: 'yarn'
- name: Yarn
run: yarn
- name: Set up Database
run: bundle exec rails db:create
- name: Run specs
run: bundle exec rake spec
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: 'coverage/lcov.info'