Loading .github/workflows/main.yml +15 −3 Original line number Diff line number Diff line Loading @@ -27,9 +27,6 @@ jobs: - name: Install dependencies run: yarn install --frozen-lockfile - name: Verify linting run: yarn lint-only --max-warnings=0 - name: Build vue-leaflet run: yarn build Loading @@ -39,6 +36,20 @@ jobs: path: ./* key: ${{ runner.os }}-${{ github.ref }}-${{ github.sha }}-setup linting: name: Verify linting runs-on: ubuntu-latest needs: setup steps: - name: Restore cache uses: actions/cache@v3 with: path: ./* key: ${{ runner.os }}-${{ github.ref }}-${{ github.sha }}-setup - name: Lint run: yarn lint-only --max-warnings=0 unit_tests: name: Run unit tests runs-on: ubuntu-latest Loading @@ -59,6 +70,7 @@ jobs: if: github.repository_owner == '@vue-leaflet' needs: - unit_tests - linting steps: - name: Publish to NPM uses: JS-DevTools/npm-publish@v2 Loading Loading
.github/workflows/main.yml +15 −3 Original line number Diff line number Diff line Loading @@ -27,9 +27,6 @@ jobs: - name: Install dependencies run: yarn install --frozen-lockfile - name: Verify linting run: yarn lint-only --max-warnings=0 - name: Build vue-leaflet run: yarn build Loading @@ -39,6 +36,20 @@ jobs: path: ./* key: ${{ runner.os }}-${{ github.ref }}-${{ github.sha }}-setup linting: name: Verify linting runs-on: ubuntu-latest needs: setup steps: - name: Restore cache uses: actions/cache@v3 with: path: ./* key: ${{ runner.os }}-${{ github.ref }}-${{ github.sha }}-setup - name: Lint run: yarn lint-only --max-warnings=0 unit_tests: name: Run unit tests runs-on: ubuntu-latest Loading @@ -59,6 +70,7 @@ jobs: if: github.repository_owner == '@vue-leaflet' needs: - unit_tests - linting steps: - name: Publish to NPM uses: JS-DevTools/npm-publish@v2 Loading