-
Notifications
You must be signed in to change notification settings - Fork 27
52 lines (41 loc) · 1.15 KB
/
ci.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
43
44
45
46
47
48
49
50
51
52
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