Skip to content

Commit

Permalink
BREAKING CHANGE: Comunica v3 (#258)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Comunica v3 (#258)
  • Loading branch information
jeswr committed Apr 1, 2024
1 parent f01ece6 commit b0cd3aa
Show file tree
Hide file tree
Showing 13 changed files with 18,479 additions and 12,014 deletions.
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

0 comments on commit b0cd3aa

Please sign in to comment.