Skip to content

fix: pull request titles in Bitbucket DC 8.19.6 #270

fix: pull request titles in Bitbucket DC 8.19.6

fix: pull request titles in Bitbucket DC 8.19.6 #270

Workflow file for this run

name: Test, package
on:
push:
pull_request:
branches:
- "main"
- "release/*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Node.JS
uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test
- name: Package to Javascript bundle
run: npm run build
- uses: actions/upload-artifact@v4
with:
name: bundle
path: "userscript/index.user.js"