merging vue3-atlas changes #1
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: Vue3 Atlas Continuous Automation Test | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
e2e-testing: | |
runs-on: ubuntu-latest | |
environment: development | |
steps: | |
- name: Use Node.js 20.x | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.x' | |
- name: Install dependencies and run automation tests | |
run: | | |
cd automationtests | |
npm install | |
npm test | |