diff options
| author | s1n <[email protected]> | 2020-04-15 03:33:29 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-04-15 03:33:29 -0700 |
| commit | 12cf994d7f3e8244119fbb95cbeba614b09acb66 (patch) | |
| tree | 3621cdf10e08492ebae5e7373bae87758e33b348 /.github/workflows/nodejs.yml | |
| parent | add test, build and run, v5.0.3 (diff) | |
| download | dep-core-12cf994d7f3e8244119fbb95cbeba614b09acb66.tar.xz dep-core-12cf994d7f3e8244119fbb95cbeba614b09acb66.zip | |
Delete nodejs.yml
Diffstat (limited to '.github/workflows/nodejs.yml')
| -rw-r--r-- | .github/workflows/nodejs.yml | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml deleted file mode 100644 index 4390e93..0000000 --- a/.github/workflows/nodejs.yml +++ /dev/null @@ -1,31 +0,0 @@ -# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions - -name: Node.js CI - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - build: - - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [10.x, 12.x] - - steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - run: npm ci - - run: npm run build --if-present - - run: npm test - env: - CI: true |