Node-Red configuration
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

nodejs.yml 414B

123456789101112131415161718192021
  1. name: Node node-red-contrib-logger
  2. on: [push]
  3. jobs:
  4. build:
  5. runs-on: ubuntu-latest
  6. strategy:
  7. matrix:
  8. node-version: [12.x]
  9. steps:
  10. - uses: actions/checkout@v2
  11. - name: Use Node.js ${{ matrix.node-version }}
  12. uses: actions/setup-node@v1
  13. with:
  14. node-version: ${{ matrix.node-version }}
  15. - run: npm ci
  16. - run: npm run build --if-present
  17. - run: npm test