diff options
author | Gary Kim <gary@garykim.dev> | 2020-02-23 03:32:26 +0800 |
---|---|---|
committer | Gary Kim <gary@garykim.dev> | 2020-02-23 12:13:48 +0800 |
commit | 907a27897a1ee5551714c10e9782e38913983fd9 (patch) | |
tree | c657262fb203908302c6fadcf1b8164cee49624b /.github/workflows | |
parent | 9d122c39ab06aa117d83364f5a0f81f5b4549d62 (diff) | |
download | nextcloud-server-907a27897a1ee5551714c10e9782e38913983fd9.tar.gz nextcloud-server-907a27897a1ee5551714c10e9782e38913983fd9.zip |
Move Compile Handlebars CI to GitHub Actions
Signed-off-by: Gary Kim <gary@garykim.dev>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/node.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index f99bd1bfce0..bd750f394dc 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -48,3 +48,20 @@ jobs: npm ci - name: Test run: npm run test + + handlebars: + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [12.x] + steps: + - uses: actions/checkout@v2 + - name: Use node ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - name: Install dependencies + run: | + npm ci + - name: Run compile + run: ./build/compile-handlebars-templates.sh |