Skip to content

chore(deps): update dependency jest to v30.0.5 #1046

chore(deps): update dependency jest to v30.0.5

chore(deps): update dependency jest to v30.0.5 #1046

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.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 build
- run: npm run test
env:
CI: true
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js from .node-version
uses: actions/setup-node@v4
with:
node-version-file: .node-version
- run: npm ci
- run: npm run lint:ci
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 }} .