Skip to content

Commit

Permalink
ci(ci/cd): add main.yml
Browse files Browse the repository at this point in the history
Add main.yml GitHub Action for the CI/CD of the package

Signed-off-by: Niloy Sikdar <[email protected]>
  • Loading branch information
niloysikdar committed Oct 6, 2022
1 parent 4930221 commit f67a748
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Check, Build & Publish Package

on:
push:
branches: [main]
pull_request:
branches: '*'

jobs:
check-and-build:
runs-on: ${{ matrix.os }}
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

strategy:
matrix:
node-version: [16.x]
os: [ubuntu-latest]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
- name: Install, check, test, and build using Node.js ${{ matrix.node-version }} ⚙️
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn lint
- run: yarn pretty
- run: yarn build

publish:
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/main' }}
needs: [check-and-build]
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
- name: Deploy and Publish package using Node.js ${{ matrix.node-version }} 🚀
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn build
- run: yarn release

0 comments on commit f67a748

Please sign in to comment.