Skip to content

Commit 2bccddd

Browse files
authored
Merge pull request #286 from nextcloud/automated/update-workflows
2 parents 23fa73a + 5bdf0b6 commit 2bccddd

File tree

1 file changed

+63
-20
lines changed

1 file changed

+63
-20
lines changed

.github/workflows/node.yml

+63-20
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,74 @@
1-
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2-
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
1+
# This workflow is provided via the organization template repository
2+
#
3+
# https://github.com/nextcloud/.github
4+
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
35

46
name: Node
57

68
on:
7-
push:
8-
branches: [ master ]
99
pull_request:
10-
branches: [ master ]
10+
paths:
11+
- '.github/workflows/**'
12+
- 'src/**'
13+
- 'appinfo/info.xml'
14+
- 'package.json'
15+
- 'package-lock.json'
16+
- 'tsconfig.json'
17+
- '**.js'
18+
- '**.ts'
19+
- '**.vue'
20+
push:
21+
branches:
22+
- main
23+
- master
24+
- stable*
25+
26+
permissions:
27+
contents: read
28+
29+
concurrency:
30+
group: node-${{ github.head_ref || github.run_id }}
31+
cancel-in-progress: true
1132

1233
jobs:
1334
build:
14-
1535
runs-on: ubuntu-latest
1636

17-
strategy:
18-
matrix:
19-
node-version: [12.x, 14.x, 16.x]
20-
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
21-
37+
name: node
2238
steps:
23-
- uses: actions/checkout@v3
24-
- name: Use Node.js ${{ matrix.node-version }}
25-
uses: actions/setup-node@v3
26-
with:
27-
node-version: ${{ matrix.node-version }}
28-
cache: 'npm'
29-
- run: npm ci
30-
- run: npm run build --if-present
31-
- run: npm test
39+
- name: Checkout
40+
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
41+
42+
- name: Read package.json node and npm engines version
43+
uses: skjnldsv/read-package-engines-version-actions@0ce2ed60f6df073a62a77c0a4958dd0fc68e32e7 # v2.1
44+
id: versions
45+
with:
46+
fallbackNode: '^16'
47+
fallbackNpm: '^7'
48+
49+
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
50+
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
51+
with:
52+
node-version: ${{ steps.versions.outputs.nodeVersion }}
53+
54+
- name: Set up npm ${{ steps.versions.outputs.npmVersion }}
55+
run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"
56+
57+
- name: Install dependencies & build
58+
run: |
59+
npm ci
60+
npm run build --if-present
61+
62+
- name: Check webpack build changes
63+
run: |
64+
bash -c "[[ ! \"`git status --porcelain `\" ]] || (echo 'Please recompile and commit the assets, see the section \"Show changes on failure\" for details' && exit 1)"
65+
66+
- name: Show changes on failure
67+
if: failure()
68+
run: |
69+
git status
70+
git --no-pager diff
71+
exit 1 # make it red to grab attention
72+
73+
- name: Test
74+
run: npm run test --if-present

0 commit comments

Comments
 (0)