1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-08 13:00:05 +00:00

chore: ci

This commit is contained in:
2022-05-04 13:10:11 +02:00
parent 1d0fb1774a
commit acc56e3a53

View File

@@ -34,67 +34,63 @@ jobs:
- name: Run unit tests - name: Run unit tests
run: npm test run: npm test
# - name: Build Package - name: Build Package
# run: npm run package:lib run: npm run package:lib
# env: env:
# CI: true CI: true
# - name: Install SSH Key - name: Install SSH Key
# uses: shimataro/ssh-key-action@v2 uses: shimataro/ssh-key-action@v2
# with: with:
# key: ${{ secrets.DCGITLAB_KEY }} key: ${{ secrets.DCGITLAB_KEY }}
# known_hosts: 'placeholder' known_hosts: 'placeholder'
# - name: Write VPN Files - name: Write VPN Files
# run: | run: |
# echo "$CA_CRT" > .github/vpn/ca.crt echo "$CA_CRT" > .github/vpn/ca.crt
# echo "$USER_CRT" > .github/vpn/user.crt echo "$USER_CRT" > .github/vpn/user.crt
# echo "$USER_KEY" > .github/vpn/user.key echo "$USER_KEY" > .github/vpn/user.key
# echo "$TLS_KEY" > .github/vpn/tls.key echo "$TLS_KEY" > .github/vpn/tls.key
# shell: bash shell: bash
# env: env:
# CA_CRT: ${{ secrets.CA_CRT}} CA_CRT: ${{ secrets.CA_CRT}}
# USER_CRT: ${{ secrets.USER_CRT }} USER_CRT: ${{ secrets.USER_CRT }}
# USER_KEY: ${{ secrets.USER_KEY }} USER_KEY: ${{ secrets.USER_KEY }}
# TLS_KEY: ${{ secrets.TLS_KEY }} TLS_KEY: ${{ secrets.TLS_KEY }}
# - name: Install Open VPN - name: Install Open VPN
# run: | run: |
# sudo apt install apt-transport-https sudo apt install apt-transport-https
# sudo wget https://swupdate.openvpn.net/repos/openvpn-repo-pkg-key.pub sudo wget https://swupdate.openvpn.net/repos/openvpn-repo-pkg-key.pub
# sudo apt-key add openvpn-repo-pkg-key.pub sudo apt-key add openvpn-repo-pkg-key.pub
# sudo wget -O /etc/apt/sources.list.d/openvpn3.list https://swupdate.openvpn.net/community/openvpn3/repos/openvpn3-focal.list sudo wget -O /etc/apt/sources.list.d/openvpn3.list https://swupdate.openvpn.net/community/openvpn3/repos/openvpn3-focal.list
# sudo apt update sudo apt update
# sudo apt install openvpn3=16~beta+focal sudo apt install openvpn3=16~beta+focal
# - name: Start Open VPN 3 - name: Start Open VPN 3
# run: openvpn3 session-start --config .github/vpn/config.ovpn run: openvpn3 session-start --config .github/vpn/config.ovpn
# - name: Deploy sasjs-tests - name: Deploy sasjs-tests
# run: | run: |
# npm install -g replace-in-files-cli npm install -g replace-in-files-cli
# cd sasjs-tests cd sasjs-tests
# replace-in-files --regex='"@sasjs/adapter".*' --replacement='"@sasjs/adapter":"latest",' ./package.json replace-in-files --regex='"@sasjs/adapter".*' --replacement='"@sasjs/adapter":"latest",' ./package.json
# npm i npm i
# replace-in-files --regex='"userName".*' --replacement='"userName":"${{ secrets.SASJS_USERNAME }}",' ./public/config.json replace-in-files --regex='"userName".*' --replacement='"userName":"${{ secrets.SASJS_USERNAME }}",' ./public/config.json
# replace-in-files --regex='"password".*' --replacement='"password":"${{ secrets.SASJS_PASSWORD }}",' ./public/config.json replace-in-files --regex='"password".*' --replacement='"password":"${{ secrets.SASJS_PASSWORD }}",' ./public/config.json
# replace-in-files --regex='"serverType".*' --replacement='"serverType":"SASJS",' ./public/config.json replace-in-files --regex='"serverType".*' --replacement='"serverType":"SASJS",' ./public/config.json
# npm run update:adapter && npm run build npm run update:adapter && npm run build
# scp -o stricthostkeychecking=no -r ./build/* ${{ secrets.DCGITLAB_DEPLOY_PATH_VIYA }} scp -o stricthostkeychecking=no -r ./build/* ${{ secrets.DCGITLAB_DEPLOY_PATH_VIYA }}
# - name: Run cypress on sasjs - name: Run cypress on sasjs
# run: | run: |
# replace-in-files --regex='"sasjsTestsUrl".*' --replacement='"sasjsTestsUrl":"${{ secrets.SASJS_TEST_URL_VIYA }}",' ./cypress.json replace-in-files --regex='"sasjsTestsUrl".*' --replacement='"sasjsTestsUrl":"${{ secrets.SASJS_TEST_URL_VIYA }}",' ./cypress.json
# replace-in-files --regex='"username".*' --replacement='"username":"${{ secrets.SASJS_USERNAME }}",' ./cypress.json replace-in-files --regex='"username".*' --replacement='"username":"${{ secrets.SASJS_USERNAME }}",' ./cypress.json
# replace-in-files --regex='"password".*' --replacement='"password":"${{ secrets.SASJS_PASSWORD }}",' ./cypress.json replace-in-files --regex='"password".*' --replacement='"password":"${{ secrets.SASJS_PASSWORD }}",' ./cypress.json
# sh ./sasjs-cypress-run.sh ${{ secrets.DISCORD_WEBHOOK }} https://github.com/${{github.repository}}/actions/runs/${{github.run_id}} sh ./sasjs-cypress-run.sh ${{ secrets.DISCORD_WEBHOOK }} https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
# For some reason if coverage report action is run before other commands, those commands can't access the directories and files on which they depend on
- name: Generate coverage report - name: Generate coverage report
uses: artiomtr/jest-coverage-report-action@v2.0-rc.2 uses: artiomtr/jest-coverage-report-action@v2.0-rc.2
with: with:
github-token: ${{ secrets.GITHUB_TOKEN }} github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Test
run: |
pwd
ls