-
Notifications
You must be signed in to change notification settings - Fork 4
42 lines (33 loc) · 859 Bytes
/
node.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# 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