Skip to content

[js] Update @types/react-dom 18.2.15 → 18.2.17 (patch) (#265) #667

[js] Update @types/react-dom 18.2.15 → 18.2.17 (patch) (#265)

[js] Update @types/react-dom 18.2.15 → 18.2.17 (patch) (#265) #667

Workflow file for this run

name: Continuous Integration
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: docker-compose -f docker-compose.test.yml pull
# Caching is making builds slower:
# https://github.com/satackey/action-docker-layer-caching/issues/305
# - uses: satackey/action-docker-layer-caching@v0.0.11
# continue-on-error: true
- run: docker-compose -f docker-compose.test.yml build
- run: docker-compose -f docker-compose.test.yml run web sh -c 'rails db:setup && rails test && yarn lint'
deploy_staging:
needs: test
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Caching is making builds slower:
# https://github.com/satackey/action-docker-layer-caching/issues/305
# - uses: satackey/action-docker-layer-caching@v0.0.11
# continue-on-error: true
- uses: zenato/docker-action@master
with:
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
repository: ${{ secrets.REGISTRY_REPO }}
registry: ${{ secrets.REGISTRY_URL }}
tag: staging