Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BREAKING CHANGE: Comunica v3 #258

Merged
merged 4 commits into from
Apr 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,10 @@ updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/" # Location of package manifests
schedule:
interval: "daily"
labels:
- "dependencies"
26 changes: 13 additions & 13 deletions .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: automerge
name: Enable automerge on dependabot PRs

on:
pull_request:
types:
- labeled
check_suite:
types:
- completed
status: {}
pull_request_target:

jobs:
automerge:
name: Enable automerge on dependabot PRs
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
repository-projects: write
steps:
- name: automerge
uses: "pascalgn/automerge-action@v0.13.0"
env:
MERGE_LABELS: "dependencies"
GITHUB_TOKEN: "${{ secrets.GH_TOKEN }}"
- uses: actions/checkout@v4
- run: gh pr merge ${{ github.event.pull_request.html_url }} --auto --squash
env:
GH_TOKEN: ${{ github.token }
20 changes: 0 additions & 20 deletions .github/workflows/lint.yml

This file was deleted.

45 changes: 38 additions & 7 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,54 @@

name: Node.js CI

on: [push]
on:
push:
branches:
- master
pull_request:

jobs:
build:

test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x, 15.x, 16.x, 17.x]
node-version: [18, 20]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm test

eslint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install
- run: npm run build --if-present
- run: npm run-script lint

release:
if: ${{ github.ref == 'refs/heads/master' }}
needs: [ eslint, test ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install
- run: npm run build --if-present
- name: Release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
run: npx semantic-release
24 changes: 0 additions & 24 deletions .github/workflows/release.yml

This file was deleted.

Loading
Loading