diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index f35be82a3..14e1a8387 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -12,11 +12,7 @@ jobs: - name: Installing dependencies uses: borales/actions-yarn@v2.0.0 with: - cmd: install - - name: Linting - uses: borales/actions-yarn@v2.0.0 - with: - cmd: lint + cmd: install --ignore-engines - name: Running tests uses: borales/actions-yarn@v2.0.0 with: diff --git a/.github/workflows/publish-records.yml b/.github/workflows/publish-records.yml index 41f919882..dca09caf6 100644 --- a/.github/workflows/publish-records.yml +++ b/.github/workflows/publish-records.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v2 - uses: borales/actions-yarn@v2.0.0 with: - cmd: install + cmd: install --ignore-engines - name: Running tests uses: borales/actions-yarn@v2.0.0 with: diff --git a/domains/bruno.json b/domains/bruno.json new file mode 100644 index 000000000..1a0c9060e --- /dev/null +++ b/domains/bruno.json @@ -0,0 +1,10 @@ +{ + "description": "Bruno Henrique Paiva's personal website", + "owner": { + "username": "brunohpaiva", + "email": "bruno@sigane.com.br" + }, + "record": { + "URL": "https://bruno.codes" + } +} diff --git a/domains/wind.json b/domains/wind.json new file mode 100644 index 000000000..59f3baf85 --- /dev/null +++ b/domains/wind.json @@ -0,0 +1,10 @@ +{ + "description": "WindTR's Website", + "owner": { + "username": "WindTR", + "email": "westselim20@gmail.com" + }, + "record": { + "URL": "https://wind.js.org" + } +} diff --git a/package.json b/package.json index fef02d225..210d2b343 100644 --- a/package.json +++ b/package.json @@ -2,9 +2,6 @@ "name": "is-a-dev-core", "version": "1.0.0", "description": "Register *.is-a.dev domains for free", - "engines": { - "node": ">=11.14.0" - }, "scripts": { "test": "ENV=test jest", "lint": "eslint utils scripts domains --ext .json,.js",