From b271ce905c46e6b6b87e987d37aab1cbf7871c0c Mon Sep 17 00:00:00 2001 From: Austin Tinius Date: Tue, 19 May 2020 00:32:56 -0700 Subject: [PATCH] Revert "Create nodejs.yml" --- .github/workflows/nodejs.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/nodejs.yml diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml deleted file mode 100644 index 4cce9cf..0000000 --- a/.github/workflows/nodejs.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Node.js CI - -on: - push: - branches: [ development ] - pull_request: - branches: [ developemnt ] - -jobs: - build: - - runs-on: ${{ matrix.os }} - - strategy: - matrix: - node-version: [10.x, 12.x] - os: [ubuntu-latest, macos-latest, windows-latest] - - 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 run compile - - run: npm run package