add github actions
This commit is contained in:
parent
821092744f
commit
65a0f5cb00
5 changed files with 149 additions and 3 deletions
3
.github/FUNDING.yml
vendored
Normal file
3
.github/FUNDING.yml
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
# These are supported funding model platforms
|
||||
|
||||
github: jerger
|
102
.github/workflows/release.yml
vendored
Normal file
102
.github/workflows/release.yml
vendored
Normal file
|
@ -0,0 +1,102 @@
|
|||
name: release prod
|
||||
on:
|
||||
push:
|
||||
tags: '[0-9]+.[0-9]+.[0-9]+*'
|
||||
|
||||
jobs:
|
||||
release:
|
||||
name: release
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [14.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Cache node modules
|
||||
uses: actions/cache@v2
|
||||
env:
|
||||
cache-name: cache-node-modules
|
||||
with:
|
||||
# npm cache files are stored in `~/.npm` on Linux/macOS
|
||||
path: ~/.npm
|
||||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-build-${{ env.cache-name }}-
|
||||
${{ runner.os }}-build-
|
||||
${{ runner.os }}-
|
||||
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: test em
|
||||
run: |
|
||||
npm install
|
||||
npm install -g --save-dev shadow-cljs
|
||||
shadow-cljs compile test
|
||||
|
||||
- name: build em
|
||||
run: |
|
||||
shadow-cljs release frontend
|
||||
sha256sum public/js/main.js > target/dda-masto-embedd.js.sha256
|
||||
sha512sum public/js/main.js > target/dda-masto-embedd.js.sha512
|
||||
|
||||
- name: Create Release
|
||||
id: create_release
|
||||
uses: actions/create-release@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
tag_name: ${{ github.ref }}
|
||||
release_name: Release ${{ github.ref }}
|
||||
draft: false
|
||||
prerelease: false
|
||||
|
||||
- name: Upload masto-embedd.js
|
||||
id: upload-masto-embedd-js
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||
asset_path: public/js/main.js
|
||||
asset_name: dda-masto-embed.js
|
||||
asset_content_type: application/json
|
||||
|
||||
- name: Upload masto-embedd.js.sha256
|
||||
id: upload-masto-embedd-js-sha256
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||
asset_path: target/dda-masto-embedd.js.sha256
|
||||
asset_name: dda-masto-embedd.js.sha256
|
||||
asset_content_type: application/json
|
||||
|
||||
- name: Upload masto-embedd.js.sha512
|
||||
id: upload-masto-embedd-js-sha512
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||
asset_path: target/dda-masto-embedd.js.sha512
|
||||
asset_name: dda-masto-embedd.js.sha512
|
||||
asset_content_type: application/json
|
||||
|
||||
- name: upload to npm
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
run: |
|
||||
mkdir -p target/npm-build
|
||||
cp public/js/main.js target/npm-build/
|
||||
cp target/dda-masto-embedd.js.sha256 target/npm-build/
|
||||
cp target/dda-masto-embedd.js.sha512 target/npm-build/
|
||||
cp package.json target/npm-build/
|
||||
cp README.md target/npm-build/
|
||||
tar -cz -C target/npm-build -f target/npm-build.tgz .
|
||||
npm publish ./target/npm-build.tgz --access public
|
42
.github/workflows/test-pr.yml
vendored
Normal file
42
.github/workflows/test-pr.yml
vendored
Normal file
|
@ -0,0 +1,42 @@
|
|||
name: test PR
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
push:
|
||||
ingnored-branches: [ 'master' ]
|
||||
|
||||
jobs:
|
||||
test-pr-matrix:
|
||||
name: matrix test for pull requests
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [10.x, 12.x, 14.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Cache node modules
|
||||
uses: actions/cache@v2
|
||||
env:
|
||||
cache-name: cache-node-modules
|
||||
with:
|
||||
# npm cache files are stored in `~/.npm` on Linux/macOS
|
||||
path: /usr/lib/node_modules
|
||||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-build-${{ env.cache-name }}-
|
||||
${{ runner.os }}-build-
|
||||
${{ runner.os }}-
|
||||
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: test em
|
||||
run: |
|
||||
npm install
|
||||
npm install -g --save-dev shadow-cljs
|
||||
shadow-cljs compile test
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "dda-masto-embed",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"private": false,
|
||||
"devDependencies": {
|
||||
"shadow-cljs": "^2.8.104",
|
||||
"source-map-support": "^0.5.19"
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
:dependencies
|
||||
[[orchestra "2019.02.06-1"]
|
||||
[hiccups "0.3.0"]
|
||||
[com.andrewmcveigh/cljs-time "0.5.2"]
|
||||
[cider/cider-nrepl "0.21.0"]]
|
||||
[com.andrewmcveigh/cljs-time "0.5.2"]]
|
||||
:dev-http {8080 "public"}
|
||||
:builds
|
||||
{:test {:target :node-test
|
||||
|
|
Loading…
Reference in a new issue