This project is a TypeScript-based script that automates the login process for the Gamio Greythr HR portal.
- Node.js v14 or later
- Clone the repository
- Install dependencies with
npm install
- Create a
.env
file based on the.env.sample
file, and add your Gamio Greythr login credentials. - Start the script with
npm start
.
- Run tests with
npm test
.
If you prefer to use ts-node
instead of running tsc
and then node
, you can make the following changes:
- Install
ts-node
as a dev dependency:
npm install ts-node --save-dev