-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1b3900a
Showing
21 changed files
with
1,319 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Changesets | ||
|
||
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works | ||
with multi-package repos, or single-package repos to help you version and publish your code. You can | ||
find the full documentation for it [in our repository](https://github.com/changesets/changesets) | ||
|
||
We have a quick list of common questions to get you started engaging with this project in | ||
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json", | ||
"changelog": "@changesets/cli/changelog", | ||
"commit": false, | ||
"fixed": [], | ||
"linked": [], | ||
"access": "restricted", | ||
"baseBranch": "main", | ||
"updateInternalDependencies": "patch", | ||
"ignore": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: 'Setup Node, deno, pnpm & install' | ||
|
||
description: 'Setup node, deno, pnpm and install' | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- uses: pnpm/[email protected] | ||
with: | ||
version: 8 | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20' | ||
cache: 'pnpm' | ||
cache-dependency-path: './pnpm-lock.yaml' | ||
|
||
- uses: denoland/setup-deno@v1 | ||
with: | ||
deno-version: v1.x | ||
|
||
- name: Install | ||
shell: bash | ||
run: pnpm install --frozen-lockfile | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Release Changeset | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
concurrency: ${{ github.workflow }}-${{ github.ref }} | ||
|
||
jobs: | ||
release: | ||
permissions: | ||
contents: write | ||
issues: write | ||
pull-requests: write | ||
|
||
if: github.repository == 'BunnyWay/es-hono-pet-store' | ||
|
||
name: Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.BUNNY_GITHUB }} | ||
|
||
- name: Setup Javascript | ||
uses: ./.github/actions/setup-project | ||
|
||
- name: Create Release Pull Request | ||
uses: changesets/action@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.BUNNY_GITHUB }} | ||
with: | ||
publish: "pnpm run ci:publish" | ||
version: "pnpm run ci:version" | ||
title: "🎉 Release" | ||
createGithubReleases: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Continous integration | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
|
||
jobs: | ||
checkout: | ||
runs-on: ubuntu-latest | ||
|
||
name: 'Install, lint and test' | ||
|
||
steps: | ||
- name: 'Checkout' | ||
uses: actions/checkout@v4 | ||
|
||
- name: 'Setup Javascript' | ||
uses: ./.github/actions/setup-project | ||
|
||
- name: 'Lint' | ||
run: deno task lint | ||
|
||
- name: 'Test' | ||
run: deno task test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: On merge changeset | ||
|
||
on: | ||
pull_request: | ||
types: [closed] | ||
branches: | ||
- 'main' | ||
|
||
jobs: | ||
publish: | ||
if: contains(github.event.pull_request.head.ref, 'changeset-release') | ||
|
||
name: 'Upload script' | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 | ||
|
||
- name: 'Setup Javascript' | ||
uses: ./.github/actions/setup-project | ||
|
||
- name: Bundle the script into a single file | ||
run: deno task build | ||
|
||
- name: Publish the script to Bunny | ||
uses: 'BunnyWay/actions/deploy-script@main' | ||
with: | ||
script_id: ${{ secrets.SCRIPT_ID }} | ||
deploy_key: ${{ secrets.DEPLOY_KEY }} | ||
file: "dist/index.ts" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
/dist/ | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
.vscode | ||
|
||
# local env files | ||
.env*.local | ||
|
||
# vercel | ||
.vercel | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Template: es-hono-pet-store | ||
|
||
This templates demonstrates a basic Pet Store API for Bunny using a local `Deno`. | ||
|
||
> You do not want to use Deno? Feel free to use something else, [here](https://bunny.net) is a full | ||
> fledged example with `node` instead! | ||
This templated script is currently deployed | ||
[here](https://es-hono-pet-store-9ww3g.b-cdn.net/). | ||
|
||
## Setup | ||
|
||
To run this example you'll need to have a valid | ||
[Deno](https://docs.deno.com/runtime/manual/getting_started/installation/) installation. | ||
|
||
When you have the `deno` binary available, you should be able to run the `check` | ||
task which is the task ensuring everything is compiling fine. | ||
|
||
``` | ||
# A tiny lint just to be sure! | ||
deno task lint | ||
# We ensure everything is type compliant! | ||
deno task check | ||
``` | ||
|
||
We also use `pnpm` to use `changeset`. | ||
|
||
## Changeset | ||
|
||
In this template, we handle versionning with [changeset](https://github.com/changesets/changesets), | ||
each time you do a change, you'll need to indicate the kind of changes you are | ||
doing so we can have the auto-release process ongoing by doing: | ||
|
||
``` | ||
pnpm changeset | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"name": "es-hono-pet-store", | ||
"version": "0.1.0", | ||
"main": "src/index.ts", | ||
"type": "module", | ||
"private": true, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/BunnyWay/es-hono-pet-store.git" | ||
}, | ||
"keywords": [ | ||
"github", | ||
"bunny" | ||
], | ||
"author": "Bunny Devs", | ||
"license": "MIT", | ||
"scripts": { | ||
"lint": "deno lint", | ||
"test": "deno test --allow-none -A src/**/*.test.ts", | ||
"check": "deno check src/main.ts", | ||
"build": "mkdir -p dist && deno bundle src/main.ts dist/index.ts", | ||
"dev": "deno run src/main.ts", | ||
"release": "echo \"No release\"", | ||
"ci:version": "pnpm changeset version", | ||
"ci:publish": "./scripts/publish.sh" | ||
}, | ||
"devDependencies": { | ||
"@changesets/cli": "^2.26.2" | ||
} | ||
} |
Oops, something went wrong.