Use a stream for S3 uploads to allow files > 2GB #149
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
name: Caselist CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
CI: true | |
HUSKY: 0 | |
TZ: "America/Chicago" | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
jobs: | |
build-client: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.11.0 | |
- name: Upgrade npm to fix freezing bug in 10.9.0 shipped with Node 22.11.0 | |
run: npm install -g npm@latest | |
- name: Install packages | |
run: | | |
npm install | |
- name: Install packages | |
run: | | |
cd client && npm install | |
- name: Lint | |
run: | | |
cd client && npm run lint | |
- name: Test | |
run: | | |
cd client && npm run test:ci | |
- name: If tests passed change icon | |
if: success() | |
run: echo "SLACK_ICON=:white_check_mark:" >> $GITHUB_ENV | |
- name: Send slack notification | |
if: always() | |
uses: speechanddebate/action-slack-notify@master | |
build-server: | |
runs-on: ubuntu-latest | |
services: | |
mariadb-test: | |
image: mariadb:10.11.2 | |
ports: | |
- '3306:3306' | |
env: | |
MARIADB_USER: caselist | |
MARIADB_PASSWORD: caselist | |
MARIADB_DATABASE: caselist | |
MARIADB_ROOT_PASSWORD: caselist | |
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Load local database | |
run: mysql -h 127.0.0.1 -P 3306 -u caselist -pcaselist caselist < ./server/v1/db/caselist.sql | |
- name: Get node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.11.0 | |
- name: Upgrade npm to fix freezing bug in 10.9.0 shipped with Node 22.11.0 | |
run: npm install -g npm@latest | |
- name: Install packages | |
run: | | |
npm install | |
- name: Install packages | |
run: | | |
cd server && npm install | |
- name: Lint | |
run: | | |
cd server && npm run lint | |
- name: Test | |
run: | | |
cd server && npm run test:ci | |
- name: If tests passed change icon | |
if: success() | |
run: echo "SLACK_ICON=:white_check_mark:" >> $GITHUB_ENV | |
- name: Send slack notification | |
if: always() | |
uses: speechanddebate/action-slack-notify@master |