Skip to content

Merge pull request #3 from techconative/configId #20

Merge pull request #3 from techconative/configId

Merge pull request #3 from techconative/configId #20

Workflow file for this run

name: Test
on:
push:
paths-ignore:
- 'docs/**'
- 'README.md'
- 'LICENSE'
- '.editorconfig'
branches:
- main
- master
pull_request:
paths-ignore:
- 'docs/**'
- 'README.md'
- 'LICENSE'
- '.editorconfig'
branches:
- main
- master
env:
AZURE_DEVOPS_PAT: "${{ secrets.AZURE_DEVOPS_PAT }}"
ORGANIZATION_URL: "${{ secrets.ORGANIZATION_URL }}"
PROJECT_ID: "${{ secrets.PROJECT_ID }}"
PLAN_ID: 12
SUITE_ID: 14
RUN_NAME: 'sample'
CONFIGURATION_NAME: 'stage'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
node: [20.x]
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install modules
run: yarn
- name: Run tests
run: yarn test