Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: Node.js Package
on:
release:
types: [released]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ name: Run build/tests/lint on pull requests
on:
pull_request:


permissions:
contents: read
security-events: write

# By default the karma test runners use the karma 'Chrome' runner
# This is great when running locally because the browser pops up and you get to see what it does
# This doesn't work in Actions, however, so we set this env var to force the Headless runner
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/push-mainline-to-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
push:
branches: [mainline2.0]


permissions:
contents: write

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
push_to_gh-pages_branch:
Expand Down
Loading