Skip to content

formatting files

formatting files #98

Workflow file for this run

name: Check Formatting and Run Tests
on:
push:
branches:
- '**'
jobs:
check-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js version from .nvmrc
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Get npm cache directory
id: npm-cache-dir
shell: bash
run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
- uses: actions/cache@v4
id: npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
with:
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
- name: Check formatting
run: npm run check-format
- name: Run tests
run: npm run test