feature : Husky & Prettier Addition - For formatting code #25
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
# jobs: | |
# build: | |
# name: Build Check | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: "Checkout repository" | |
# uses: actions/checkout@v4 | |
# - name: "Setup node" | |
# uses: actions/setup-node@v4 | |
# with: | |
# node-version: 20 | |
# - name: "Setup yarn" | |
# run: corepack enable | |
# - name: "Setup yarn" | |
# run: rm -rf yarn.lock | |
# - name: "Install dependencies" | |
# run: yarn install | |
# - name: "Build" | |
# run: npm run re:build | |
jobs: | |
build_test: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [ 14, 16, 18 ] | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: npm ci, build and test | |
run: | | |
npm ci | |
npm run re:build |