Skip to content

Add hours history logging #54

Add hours history logging

Add hours history logging #54

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Tests
on:
push:
branches: ["**"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Setup secrets
shell: python
env:
ENV_FILE: ${{ secrets.ENV_FILE }}
SSH_IDENTITY_FILE: ${{ secrets.SSH_IDENTITY_FILE }}
run: |
import os, stat
f = open(".env", "a")
f.write(os.environ["ENV_FILE"])
f.close()
g = open("id", "a")
g.write(os.environ["SSH_IDENTITY_FILE"])
g.close()
os.chmod("id", stat.S_IRUSR)
- name: Open SSH connection to DB
run: |
${{ secrets.SSH_COMMAND }}
- name: Install packages
run: npm ci
- name: Run tests
run: |
sudo npm test