mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2024-11-15 18:08:32 -07:00
Rework ci and use package-lock.json instead of npm-shrinkwrap.json (#12631)
* Update ci * Use package-lock * Use package-lock.json * Use cache for ci * Enable node18 windows * Revert "Enable node18 windows" This reverts commit e427551acdd64c3a256b48a5b8e86b3c4c986405. * Remove redundant cache * Don't do shrinkwrap * Remove shrinkwrap * Remove redundant step * Cache node-gyp * Debug * Add key * Update ci.yml * Add cache detection * Fix * Add deps * Fix2 * Update caches * Fix ci * Update patsh * Update paths * Update paths * Fix max cache path * Change cache key * Remove spaces * Split caches * Fix linux cache * Fix linux cache * Merge caches * Ignore errs * Find only dirs * Run find after ci * Fix mac cache * Fix caches * Remove env run Co-authored-by: nurikk <ainur@yojee.com>
This commit is contained in:
parent
64ab3b0492
commit
d064a73131
34
.github/workflows/ci.yml
vendored
34
.github/workflows/ci.yml
vendored
@ -11,18 +11,8 @@ jobs:
|
||||
with:
|
||||
node-version: 16
|
||||
registry-url: https://registry.npmjs.org/
|
||||
- name: Get NodeJS Version
|
||||
id: nodeversion
|
||||
run: |
|
||||
echo "::set-output name=version::$(node --version)"
|
||||
- name: Restore node_modules cache
|
||||
id: cache-node-modules
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: node_modules
|
||||
key: ${{ runner.os }}-${{ steps.nodeversion.outputs.version }}-${{ hashFiles('npm-shrinkwrap.json') }}
|
||||
cache: 'npm'
|
||||
- name: Install dependencies
|
||||
if: steps.cache-node-modules.outputs.cache-hit != 'true'
|
||||
run: npm ci
|
||||
- name: Build
|
||||
run: npm run build
|
||||
@ -83,30 +73,32 @@ jobs:
|
||||
-u ${{ secrets.HASSIO_TRIGGER_SECRET }} \
|
||||
"https://dev.azure.com/zigbee2mqtt/Zigbee2mqtt%20Add-on/_apis/build/builds?api-version=5.1"
|
||||
|
||||
tests:
|
||||
tests:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
node: [14, 16, 17]
|
||||
node: [14, 16, 17, 18]
|
||||
exclude:
|
||||
- os: windows-latest # https://github.com/serialport/node-serialport/issues/2344
|
||||
node: 17
|
||||
runs-on: ${{ matrix.os }}
|
||||
continue-on-error: true
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Cache node-gyp
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
key: ${{ matrix.os }}-${{ matrix.node }}-node-gyp
|
||||
path: |
|
||||
/home/runner/.cache/node-gyp
|
||||
C:\Users\runneradmin\AppData\Local\node-gyp
|
||||
/Users/runner/Library/Caches/node-gyp
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ matrix.node }}
|
||||
registry-url: https://registry.npmjs.org/
|
||||
|
||||
- name: Restore node_modules cache
|
||||
id: cache-node-modules
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: node_modules
|
||||
key: ${{ runner.os }}-${{ matrix.node }}-${{ hashFiles('npm-shrinkwrap.json') }}
|
||||
cache: 'npm'
|
||||
- name: Install dependencies
|
||||
if: steps.cache-node-modules.outputs.cache-hit != 'true'
|
||||
run: npm ci
|
||||
- name: Lint
|
||||
run: npm run eslint
|
||||
|
3
.github/workflows/update_deps.yml
vendored
3
.github/workflows/update_deps.yml
vendored
@ -15,9 +15,8 @@ jobs:
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 16
|
||||
- run: rm -rf npm-shrinkwrap.json
|
||||
- run: npx npm-check-updates -u -x connect-gzip-static # connect-gzip-static only supports node 16
|
||||
- run: npm install && npm shrinkwrap --dev
|
||||
- run: npm install
|
||||
- uses: peter-evans/create-pull-request@v4
|
||||
with:
|
||||
commit-message: Update dependencies
|
||||
|
@ -3,12 +3,10 @@ FROM node:16-alpine3.15 as base
|
||||
WORKDIR /app
|
||||
RUN apk add --no-cache tzdata eudev tini
|
||||
|
||||
COPY package.json ./
|
||||
|
||||
# Dependencies and build
|
||||
FROM base as dependencies_and_build
|
||||
|
||||
COPY npm-shrinkwrap.json tsconfig.json index.js ./
|
||||
COPY package*.json tsconfig.json index.js ./
|
||||
COPY lib ./lib
|
||||
|
||||
RUN apk add --no-cache --virtual .buildtools make gcc g++ python3 linux-headers git && \
|
||||
@ -20,7 +18,7 @@ FROM base as release
|
||||
|
||||
COPY --from=dependencies_and_build /app/node_modules ./node_modules
|
||||
COPY dist ./dist
|
||||
COPY LICENSE index.js data/configuration.yaml ./
|
||||
COPY package.json LICENSE index.js data/configuration.yaml ./
|
||||
|
||||
COPY docker/docker-entrypoint.sh /usr/local/bin/
|
||||
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
|
||||
|
0
npm-shrinkwrap.json → package-lock.json
generated
0
npm-shrinkwrap.json → package-lock.json
generated
Loading…
Reference in New Issue
Block a user