Jotforms contact us #49
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
name: Integration Testing | |
on: | |
pull_request: | |
branches: | |
["staging", "development", "feature/*", "maintenance/*", "bugfix/*"] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
node-version: [20.x] | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Package Application | |
run: | | |
npm install -g @angular/cli | |
npm install | |
npm run-script build | |
docker build -f Dockerfile -t neurodiversity-main . | |
docker run --env=PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin --workdir=/ -p 8080:8080 --runtime=runc -d neurodiversity-main:latest | |
npm run e2e |