Skip to content

refactor(backend/utils): Move password hashing functions to utils and… #15

refactor(backend/utils): Move password hashing functions to utils and…

refactor(backend/utils): Move password hashing functions to utils and… #15

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint