Merge pull request #391 from Secreto31126/drop-mocha #196
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
name: Deploy alpha release to GitHub | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build from source | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.ref }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Build | |
run: | | |
npm ci | |
npm run build | |
- name: Store builds | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build | |
path: | | |
package.json | |
README.md | |
LICENSE | |
lib | |
alpha-branch: | |
name: Deploy alpha | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: alpha | |
- name: Clear old build | |
run: find . -not -wholename './.git*' -delete | |
- uses: actions/download-artifact@v4 | |
with: | |
name: build | |
- name: Push to alpha | |
uses: EndBug/add-and-commit@v9 | |
with: | |
default_author: github_actor | |
message: New alpha release |