mirror of
https://github.com/flarum/framework.git
synced 2024-12-04 16:23:37 +08:00
7025a7f5e0
* Pin 3rd party action * Pin GitHub-maintained actions to tag * Bump Bundlewatch Node.js to v14 LTS I have no clue what my thought process was when creating this workflow initially. Thrown this in here as it's a minor change and it's silly to make a PR just to update this number, in my opinion.
21 lines
339 B
YAML
21 lines
339 B
YAML
name: JavaScript
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
name: JS / Build
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build production JS
|
|
uses: flarum/action-build@master
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|