Skip to content

Commit

Permalink
Merge branch 'release-next' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
chaance committed Sep 16, 2022
2 parents a237dcc + 88f6720 commit 1f5cbb8
Show file tree
Hide file tree
Showing 98 changed files with 510 additions and 457 deletions.
5 changes: 0 additions & 5 deletions .changeset/late-jars-wonder.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lazy-lions-invent.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/smooth-buses-approve.md

This file was deleted.

14 changes: 13 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
const OFF = 0;
const WARN = 1;

/** @type {import('eslint').Linter.Config} */
module.exports = {
root: true,
extends: [
Expand All @@ -9,7 +13,15 @@ module.exports = {
{
files: ["rollup.config.js"],
rules: {
"import/no-extraneous-dependencies": 0,
"import/no-extraneous-dependencies": OFF,
},
},
{
files: ["templates/**/*.*"],
rules: {
"prefer-const": WARN,

"prefer-let/prefer-let": OFF,
},
},
],
Expand Down
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily
14 changes: 7 additions & 7 deletions .github/workflows/deployments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0

- name: ⬇️ Checkout repo
uses: actions/checkout@v3
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0

- name: ⬇️ Checkout repo
uses: actions/checkout@v3
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0

- name: ⬇️ Checkout repo
uses: actions/checkout@v3
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0

- name: ⬇️ Checkout repo
uses: actions/checkout@v3
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0

- name: ⬇️ Checkout repo
uses: actions/checkout@v3
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0

- name: ⬇️ Checkout repo
uses: actions/checkout@v3
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0

- name: ⬇️ Checkout repo
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0

- name: ⬇️ Checkout repo
uses: actions/checkout@v3
Expand Down
39 changes: 39 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: ⬣ Lint

on:
push:
branches:
- main
- dev
pull_request:

jobs:
lint:
name: ⬣ Lint
runs-on: ubuntu-latest
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.10.0

- name: ⬇️ Checkout repo
uses: actions/checkout@v3

- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: "yarn"

- name: 📥 Install deps
run: yarn --frozen-lockfile

- name: 🔬 Lint
run: yarn lint

- name: 🦕 Install Deno
uses: denoland/setup-deno@v1
with:
deno-version: vx.x.x

- name: 🔬 Lint deno files
run: yarn lint:deno
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
NEXT_VERSION: ${{ steps.version.outputs.NEXT_VERSION }}
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0

- name: ⬇️ Checkout repo
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0

- name: ⬇️ Checkout repo
uses: actions/checkout@v3
Expand Down Expand Up @@ -58,5 +58,5 @@ jobs:
publish: yarn run changeset:release
createGithubReleases: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.NIGHTLY_PAT }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
36 changes: 3 additions & 33 deletions .github/workflows/reusable-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0

- name: ⬇️ Checkout repo
uses: actions/checkout@v3
Expand All @@ -37,36 +37,6 @@ jobs:
- name: 🏗 Build
run: yarn build

lint:
name: ⬣ Lint
runs-on: ubuntu-latest
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1

- name: ⬇️ Checkout repo
uses: actions/checkout@v3

- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: "yarn"

- name: 📥 Install deps
run: yarn --frozen-lockfile

- name: 🔬 Lint
run: yarn lint

- name: 🦕 Install Deno
uses: denoland/setup-deno@v1
with:
deno-version: vx.x.x

- name: 🔬 Lint deno files
run: yarn lint:deno

test:
name: "🧪 Test: (OS: ${{ matrix.os }} Node: ${{ matrix.node }})"
strategy:
Expand All @@ -80,7 +50,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0

- name: ⬇️ Checkout repo
uses: actions/checkout@v3
Expand Down Expand Up @@ -115,7 +85,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0

- name: ⬇️ Checkout repo
uses: actions/checkout@v3
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/stacks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: "grunge"
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0

- name: ⎔ Setup node
uses: actions/setup-node@v3
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
name: "grunge"
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0

- name: 🗄️ Restore ${{ matrix.stack.name }}
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
name: "grunge"
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0

- name: 🗄️ Restore ${{ matrix.stack.name }}
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
name: "grunge"
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0

- name: 🗄️ Restore ${{ matrix.stack.name }}
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
cypress: "npm run dev"
steps:
- name: 🛑 Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1
uses: styfle/cancel-workflow-action@0.10.0

- name: 🗄️ Restore ${{ matrix.stack.name }}
uses: actions/download-artifact@v3
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ on:
paths-ignore:
- "docs/**"
- "scripts/**"
- "**/README.md"
- "contributors.yml"
- "**/*.md"
pull_request:
paths-ignore:
- "docs/**"
- "scripts/**"
- "contributors.yml"
- "**/*.md"

jobs:
Expand Down
11 changes: 11 additions & 0 deletions contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
- archwebio
- arganaphangquestian
- AriGunawan
- arjunyel
- arnaudambro
- arvigeus
- arvindell
Expand Down Expand Up @@ -88,6 +89,7 @@
- davecranwell-vocovo
- DavidHollins6
- davongit
- deanmv
- denissb
- derekr
- developit
Expand Down Expand Up @@ -186,6 +188,7 @@
- jimniels
- jkup
- jmasson
- jmorel88
- JNaftali
- jo-ninja
- joaosamouco
Expand All @@ -196,6 +199,7 @@
- johnson444
- joms
- joshball
- jrf0110
- jrubins
- jssisodiya
- jstafman
Expand Down Expand Up @@ -232,6 +236,7 @@
- lachlanjc
- laughnan
- lawrencecchen
- leifarriens
- lensbart
- leo
- leon
Expand Down Expand Up @@ -336,6 +341,9 @@
- realjokele
- redabacha
- reggie3
- remix-run-bot
- riencoertjens
- rkulinski
- rlfarman
- roachjc
- robindrost
Expand All @@ -357,12 +365,14 @@
- sandulat
- sbernheim4
- schpet
- scottybrown
- sdavids
- sean-roberts
- sebz
- selfish
- sergiocarneiro
- sergiodxa
- shairez
- shashankboosi
- shumuu
- sidkh
Expand Down Expand Up @@ -409,6 +419,7 @@
- vmosyaykin
- vorcigernix
- weavdale
- willhack
- willin
- wKovacs64
- wladiston
Expand Down
Loading

0 comments on commit 1f5cbb8

Please sign in to comment.