-
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
Showing
9 changed files
with
55 additions
and
12 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,2 +1,2 @@ | ||
Deno | ||
a4 | ||
caxa |
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,28 @@ | ||
# .github/workflows/deno.yaml | ||
# Copyright 2023 Keith Maxwell | ||
# SPDX-License-Identifier: CC0-1.0 | ||
|
||
name: Build | ||
|
||
on: push # yamllint disable-line rule:truthy | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- { uses: actions/checkout@v3 } | ||
- { uses: denoland/setup-deno@v1, with: { deno-version: v1.x } } | ||
- run: deno fmt --check | ||
- run: deno lint | ||
- run: >- | ||
deno compile | ||
--allow-env | ||
--allow-read | ||
--allow-write | ||
--allow-run | ||
--allow-net | ||
a4.js | ||
- { uses: actions/upload-artifact@v3, with: { name: a4, path: a4 } } | ||
- uses: softprops/action-gh-release@v1 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: { files: a4 } |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
/.en.utf-8.add.spl | ||
/a4 | ||
/deno.lock | ||
/index.html | ||
/index.pdf | ||
/node_modules/ |
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 |
---|---|---|
|
@@ -3,6 +3,12 @@ Upstream-Name: a4 | |
Upstream-Contact: Keith Maxwell <[email protected]> | ||
Source: https://github.com/maxwell-k/a4 | ||
|
||
Files: .en.utf-8.add .gitignore package.json package-lock.json README.md | ||
Files: | ||
.en.utf-8.add | ||
.gitignore | ||
README.md | ||
deno.json | ||
package-lock.json | ||
package.json | ||
Copyright: 2019 Keith Maxwell <[email protected]> | ||
License: CC0-1.0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"imports": { | ||
"puppeteer-core": "https://deno.land/x/[email protected]/mod.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