diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5873d40bd..9a14a540a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,9 +1,21 @@ -name: Build/release - -on: push +name: Build + +on: + push: + branches: [ci] + paths-ignore: + - "**.md" + - "**.spec.js" + - ".idea" + - ".vscode" + - ".dockerignore" + - "Dockerfile" + - ".gitignore" + - ".github/**" + - "!.github/workflows/build.yml" jobs: - release: + build: runs-on: ${{ matrix.os }} strategy: @@ -11,17 +23,14 @@ jobs: os: [macos-latest, ubuntu-latest, windows-latest] steps: - - name: Check out Git repository + - name: Checkout Code uses: actions/checkout@v3 - - name: Install Node.js, NPM and Yarn + - name: Setup Node.js uses: actions/setup-node@v3 with: node-version: 18 - - name: Navigate to directory - run: cd app - - name: Install Dependencies run: npm install @@ -35,4 +44,4 @@ jobs: with: name: release_on_${{ matrix. os }} path: release/ - retention-days: 5 + retention-days: 5 \ No newline at end of file