|
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 |
3 | 5 |
|
4 | 6 | name: Node
|
5 | 7 |
|
6 | 8 | on:
|
7 |
| - push: |
8 |
| - branches: [ master ] |
9 | 9 | 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 |
11 | 32 |
|
12 | 33 | jobs:
|
13 | 34 | build:
|
14 |
| - |
15 | 35 | runs-on: ubuntu-latest
|
16 | 36 |
|
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 |
22 | 38 | 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