Skip to content

[WIP] Update GitHub Actions workflow for directory structure (#7) #51

[WIP] Update GitHub Actions workflow for directory structure (#7)

[WIP] Update GitHub Actions workflow for directory structure (#7) #51

name: Automated Tests
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
working-directory: ./automated-testing
run: npm install
- name: Run tests
working-directory: ./automated-testing
run: npm test