![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ts.corals.io/frontend/node_modules/shell-quote/.github/workflows/ |
name: Node CI on: [push, pull_request] jobs: test: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] node-version: ['0.8', '0.10', '0.12', '4.x', '6.x', '8.x', '10.x', '12.x'] exclude: - os: windows-latest node-version: '0.8' runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: Disable strict SSL checks uses: allenevans/[email protected] with: NPM_CONFIG_STRICT_SSL: 'false' if: matrix.node-version == '0.8' - name: Upgrade npm to latest available version run: | curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.1/install.sh | bash source $HOME/.nvm/nvm.sh nvm install-latest-npm if: matrix.os != 'windows-latest' - run: npm install - run: npm test