Skip to content

build(deps): bump @stoplight/spectral-rulesets from 1.22.0 to 1.22.1 #124

build(deps): bump @stoplight/spectral-rulesets from 1.22.0 to 1.22.1

build(deps): bump @stoplight/spectral-rulesets from 1.22.0 to 1.22.1 #124

Workflow file for this run

name: Node CI/CD
on:
push:
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm install --ignore-scripts
- name: Run lint
run: npm run lint
build-and-push:
name: Build & Push Docker Image
runs-on: ubuntu-latest
needs: lint
permissions:
packages: write
steps:
- uses: actions/checkout@v6
- name: Login to GitHub Container Registry
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build & Push Docker image
uses: docker/build-push-action@v7
with:
context: .
push: true
tags: |
ghcr.io/developer-overheid-nl/don-api-tools:latest
ghcr.io/developer-overheid-nl/don-api-tools:${{ github.sha }}