-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: prepare the repo for a stable release (#52)
- Loading branch information
1 parent
d97283a
commit 3904059
Showing
11 changed files
with
118 additions
and
299 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 |
---|---|---|
@@ -1,71 +1,79 @@ | ||
name: ci | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- next | ||
pull_request: | ||
branches: | ||
- main | ||
- next | ||
push: | ||
branches: | ||
- main | ||
- next | ||
pull_request: | ||
branches: | ||
- main | ||
- next | ||
|
||
jobs: | ||
backport: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
backport: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: denoland/setup-deno@v1 | ||
- uses: denoland/setup-deno@v2 | ||
with: | ||
deno-version: 2.x | ||
|
||
- run: npm install --ignore-scripts | ||
- run: npm install --ignore-scripts | ||
|
||
- run: npm run backport | ||
- run: npm run backport | ||
|
||
fmt-lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
fmt-lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: denoland/setup-deno@v1 | ||
- uses: denoland/setup-deno@v2 | ||
with: | ||
deno-version: 2.x | ||
|
||
- run: deno fmt --check | ||
- run: deno fmt --check | ||
|
||
- run: deno lint | ||
- run: deno lint | ||
|
||
test: | ||
runs-on: ${{ matrix.os }} # runs a test on Ubuntu, Windows and macOS | ||
test: | ||
runs-on: ${{ matrix.os }} # runs a test on Ubuntu, Windows and macOS | ||
|
||
strategy: | ||
matrix: | ||
os: [macOS-latest, windows-latest, ubuntu-latest] | ||
strategy: | ||
matrix: | ||
os: [macOS-latest, windows-latest, ubuntu-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: denoland/setup-deno@v1 | ||
- uses: denoland/setup-deno@v2 | ||
with: | ||
deno-version: 2.x | ||
|
||
- run: deno cache src/mod.ts | ||
- run: deno cache -I src/mod.ts | ||
|
||
- run: deno task test | ||
- run: deno task test | ||
|
||
coverage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
coverage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: denoland/setup-deno@v1 | ||
- uses: denoland/setup-deno@v2 | ||
with: | ||
deno-version: 2.x | ||
|
||
- run: deno task coverage | ||
- run: deno task coverage | ||
|
||
- uses: codecov/codecov-action@v1.0.10 # upload the report on Codecov | ||
with: | ||
file: ./coverage.lcov | ||
- uses: codecov/codecov-action@v1.0.10 # upload the report on Codecov | ||
with: | ||
file: ./coverage.lcov |
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 |
---|---|---|
@@ -1,31 +1,34 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- "**" | ||
push: | ||
tags: | ||
- "**" | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: denoland/setup-deno@v1 | ||
- run: npm install | ||
- uses: denoland/setup-deno@v2 | ||
with: | ||
deno-version: 2.x | ||
|
||
- name: Publish to npm | ||
run: | | ||
npm config set //registry.npmjs.org/:_authToken '${NPM_TOKEN}' | ||
npm publish --ignore-scripts | ||
env: | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
- run: npm install | ||
|
||
- name: Create Release | ||
uses: softprops/action-gh-release@v1 | ||
env: | ||
HOOK: 0 | ||
with: | ||
generate_release_notes: true | ||
- name: Publish to npm | ||
run: | | ||
npm config set //registry.npmjs.org/:_authToken '${NPM_TOKEN}' | ||
npm publish --ignore-scripts | ||
env: | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
- name: Create Release | ||
uses: softprops/action-gh-release@v1 | ||
env: | ||
HOOK: 0 | ||
with: | ||
generate_release_notes: true |
This file was deleted.
Oops, something went wrong.
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
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
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
Oops, something went wrong.