Skip to content

more fixes with lint and config files #18

more fixes with lint and config files

more fixes with lint and config files #18

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.15.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Run CI command
run: npm ci
# add linter
# - name: Check linting
# run: npm run lint
# add tests
# - name: Run the tests
# run: npm run test
- name: Build
run: npm run build