Unit tests for walletOperations, and cypress test #237
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: Pull Request | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
buildAndUnitTest: | |
strategy: | |
matrix: | |
os: [ windows-latest, ubuntu-latest, macos-latest ] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
env: | |
PROJECT_NAME: 'Blockcore.AtomicSwaps' | |
SOLUTION_PATH: 'src/Angor.sln' | |
PROJECT_PATH: 'src/Angor/Server/Angor.Server.csproj' | |
BUILD_CONFIGURATION: 'Release' | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: | | |
8.0.x | |
- name: Setup Node.js (${{ matrix.node_version }}) | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node_version }} | |
- name: Variables | |
run: | | |
echo VERSION=$(npm run version --silent) >> $GITHUB_ENV | |
shell: bash | |
- name: Workload | |
run: dotnet workload restore ${{env.SOLUTION_PATH}} | |
- name: Restore | |
run: dotnet restore ${{env.SOLUTION_PATH}} | |
- name: Unit Test | |
run: | | |
dotnet test --logger "trx;LogFileName=testresults.trx" -v normal -c Release src/Angor.sln | grep -E '(Passed|Failed) .*ms' | |
cypress-run: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Print Working Directory | |
run: pwd | |
- name: Install Dependencies | |
run: npm install | |
- name: Cypress run | |
uses: cypress-io/github-action@v6 | |
with: | |
build: npm run build | |
start: npm start | |
browser: electron | |
headless: true | |
config-file: src/Testing/cypress.config.js |