Skip to content
This repository has been archived by the owner on Oct 16, 2023. It is now read-only.

Bump autoprefixer from 10.4.15 to 10.4.16 #862

Bump autoprefixer from 10.4.15 to 10.4.16

Bump autoprefixer from 10.4.15 to 10.4.16 #862

Workflow file for this run

name: Verify
on: [push]
jobs:
tests:
name: Tests
runs-on: ubuntu-20.04
services:
postgres:
image: postgres:13
env:
POSTGRES_USER: postgres
POSTGRES_DB: synka_test
POSTGRES_PASSWORD: "password"
ports: ["5432:5432"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: "yarn"
- name: Install packages
run: |
yarn install --pure-lockfile
- name: Setup test database
env:
RAILS_ENV: test
PGHOST: localhost
PGUSER: myapp
run: |
bin/rails db:setup
- name: Run tests
env:
BLINKA_PATH: ./results.json
run: bundle exec rails test:all
- name: Blinka - Archive
if: always()
uses: actions/upload-artifact@v3
with:
name: blinka
path: |
./results.json
./tmp/screenshots