Skip to content

Commit

Permalink
v7.1.10 fixing CICD
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasrw authored Aug 15, 2024
1 parent fc55f37 commit c13f2de
Show file tree
Hide file tree
Showing 20 changed files with 14,916 additions and 13,218 deletions.
29 changes: 13 additions & 16 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true
}
],
"automerge": true,
"automergeStrategy": "squash",
"dependencyDashboard": true,
"schedule": ["every weekend"],
"ignorePaths": ["legacy/**"]

$schema: 'https://docs.renovatebot.com/renovate-schema.json',
extends: ['config:base'],
packageRules: [
{
matchUpdateTypes: ['minor', 'patch', 'pin', 'digest'],
automerge: true,
},
],
automerge: true,
automergeStrategy: 'squash',
dependencyDashboard: true,
schedule: ['every weekend'],
ignorePaths: ['legacy/**'],
}
52 changes: 0 additions & 52 deletions .github/workflows/linter.yml

This file was deleted.

37 changes: 17 additions & 20 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,24 @@
name: CI-test

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
build:
runs-on: ubuntu-latest

runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]

strategy:
matrix:
node-version: [14.x, 16.x, 17.x, 18.x, 19.x, 20.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: npx yarn install
- run: npx yarn test-format
- run: npx yarn test-cli
- run: npx yarn test
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn test-ci
29 changes: 14 additions & 15 deletions .github/workflows/publishOnBump.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
name: Publish on bump

on:
push:
branches:
- Qmaster

on:
push:
branches:
- Qmaster

jobs:
build:
if: ${{ null || !github.event.pusher.email }}
name: Autopublish dependabot
runs-on: ubuntu-latest
steps:
- name: Checking the who pushed
run: |
echo "The github.event.pusher is:"
echo "${{ toJson(github.event) }}"
echo "And I must publish!!!"
build:
if: ${{ null || !github.event.pusher.email }}
name: Autopublish dependabot
runs-on: ubuntu-latest
steps:
- name: Checking the who pushed
run: |
echo "The github.event.pusher is:"
echo "${{ toJson(github.event) }}"
echo "And I must publish!!!"
72 changes: 0 additions & 72 deletions .github/workflows/scorecard.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
test/*
src/*
gfx/*
rollup.config.js
tmp/*
Expand All @@ -8,5 +7,4 @@ tmp/*
*.txt
*.file
*.lock
*.ts
legacy/
4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
legacy/
dist/
bin/
*.md
2 changes: 0 additions & 2 deletions .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@ useTabs: true
bracketSpacing: false
trailingComma: es5
singleQuote: true
arrowParens: "avoid"

Loading

0 comments on commit c13f2de

Please sign in to comment.