From 1871b007c43ab7daa9179a31d7910d6fe2d26303 Mon Sep 17 00:00:00 2001 From: Carlos Serrano Date: Thu, 27 Jun 2024 15:25:56 +0200 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=A4=96=20add=20build=20and=20rel?= =?UTF-8?q?ease=20CI=20pipeline?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 26 ++++++++++++++++++++++++++ .github/workflows/release.yml | 31 +++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 .github/workflows/build.yml create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..4b2ce79 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,26 @@ +name: Build +on: + push: + branches-ignore: + - master +jobs: + build: + name: Build + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Setup Node.js + uses: actions/setup-node@v2 + with: + node-version: '20' + cache: 'yarn' + check-latest: true + - name: Install dependencies + run: yarn install --frozen-lockfile + - name: Run tests + run: yarn run test + - name: Lint code + run: yarn run lint diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..0c8b305 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,31 @@ +name: Release +on: + push: + branches: + - master +jobs: + release: + name: Release + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Setup Node.js + uses: actions/setup-node@v2 + with: + node-version: '20' + cache: 'yarn' + check-latest: true + - name: Install dependencies + run: yarn install --frozen-lockfile + - name: Run tests + run: yarn run test + - name: Lint code + run: yarn run lint + - name: Release + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + run: yarn run semantic-release