Fix error when migrating with existing webhooks.tag_id
foreign (#65)
#47
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: JavaScript | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: JS / Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Restore npm cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('js/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
# Our action will install npm, cd into `./js`, run `npm run build` and | |
# `npm run build-typings`, then commit and upload any changes | |
- name: Build production JS | |
uses: flarum/action-build@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
build_script: build | |
package_manager: npm |