Skip to content

fix: change analytics version #17

fix: change analytics version

fix: change analytics version #17

Workflow file for this run

name: CodeAtlas CI
on:
push:
branches: [main, master]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: backend
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: backend/package-lock.json
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test