Skip to content

Commit

Permalink
Add GitHub publish GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
osvalds committed Sep 28, 2023
1 parent d8c1350 commit 90d9f83
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/github-package-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Deploy to Github Packages

on:
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: browser-actions/setup-firefox@latest

- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: |
npm install
sudo apt-get install graphviz xvfb
- name: Lint
run: |
make lint
- name: Test
run: |
KARMA_OPTS="--browsers Firefox" xvfb-run --auto-servernum make -e test
publish-gpr:
needs: build
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
cache: 'npm'
cache-dependency-path: package-lock.json
registry-url: https://npm.pkg.github.com/
- run: npm install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit 90d9f83

Please sign in to comment.