Skip to content

build(config): update webpack config #201

build(config): update webpack config

build(config): update webpack config #201

Workflow file for this run

# GitHub Actions allows you to build, test, and deploy applications in your language of choice
name: Node CI
on:
push:
branches: [main, v1-dev]
pull_request:
branches: [main]
jobs:
build:
name: Build on node ${{ matrix.node }} and ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [20]
runs-on: ${{ matrix.os }}
steps:
# checkout the repo
- name: Checkout the repo
uses: actions/checkout@v4
# use node.js matrix
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
# install dependencies
- name: Install deps
run: yarn install
# lint `scss` files
- name: Lint files
run: yarn run scss:lint
# build proccess
- name: Build proccess
run: yarn run build