Update react monorepo to v19 (major) #3092
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: The KNESTs stack CI/CD | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run e2e tests | |
run: | | |
whoami | |
docker network create knests-test | |
sudo addgroup --gid 1024 nodegroup | |
sudo useradd --create-home --shell /bin/bash node --gid nodegroup | |
sudo chown -R node:nodegroup . | |
docker-compose -f docker-compose.yml -f docker-compose.test.yml up --build --abort-on-container-exit --renew-anon-volumes --force-recreate |