Bump puppeteer from 19.2.2 to 23.0.2 #2040
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
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:12 | |
env: | |
POSTGRES_PASSWORD: postgres | |
ports: | |
- 5432:5432 | |
# needed because the postgres container does not provide a healthcheck | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
strategy: | |
matrix: | |
node-version: [14.19.3, 16.x] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: sudo apt-get -y install libpq-dev | |
- name: Setup apps/www | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7.4 | |
working-directory: apps/www | |
bundler-cache: true | |
- name: Setup apps/tutorial | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7.4 | |
working-directory: apps/tutorial | |
bundler-cache: true | |
- name: Setup DB | |
run: |- | |
cd apps/www | |
cp config/database.yml.github-actions config/database.yml | |
bundle exec rails db:setup | |
env: | |
RAILS_ENV: test | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
- run: yarn | |
- run: yarn build | |
- name: Lint Codebase | |
run: yarn lint | |
- name: Run Typecheck | |
run: yarn typecheck | |
- run: yarn test:ci | |
env: | |
RAILS_ENV: test | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
- name: Check Bundle Size | |
run: yarn size |