From 17d0876144f761d31b7cd03d726a625be4fda149 Mon Sep 17 00:00:00 2001 From: Romain DUBOC Date: Sun, 21 Mar 2021 15:06:27 +0100 Subject: [PATCH] Fix file naming --- .github/workflows/build.yml | 31 ------------------------------- .github/workflows/npm-publish.yml | 2 ++ src/{platform.ts => s.ts} | 0 3 files changed, 2 insertions(+), 31 deletions(-) delete mode 100644 .github/workflows/build.yml rename src/{platform.ts => s.ts} (100%) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index d744093..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Build and Lint - -on: [push, pull_request] - -jobs: - build: - runs-on: ubuntu-latest - - strategy: - matrix: - # the Node.js versions to build on - node-version: [10.x, 12.x, 13.x] - - steps: - - uses: actions/checkout@v2 - - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - - name: Install dependencies - run: npm install - - - name: Lint the project - run: npm run lint - - - name: Build the project - run: npm run build - env: - CI: true diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 5c2b519..ef6ef6a 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -1,3 +1,5 @@ +name: Deploy NPM release + on: push jobs: diff --git a/src/platform.ts b/src/s.ts similarity index 100% rename from src/platform.ts rename to src/s.ts