Skip to content

chore(deps): update dependency nodemon to v3 #362

chore(deps): update dependency nodemon to v3

chore(deps): update dependency nodemon to v3 #362

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint:ci
- run: npm run build
- run: npm run test
env:
CI: true
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Build docker image
run: docker build -t relekang/graphql-rss-parser:${{ github.sha }} .