-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfalkor-plugin-example-develop.yml
More file actions
48 lines (37 loc) · 1.01 KB
/
falkor-plugin-example-develop.yml
File metadata and controls
48 lines (37 loc) · 1.01 KB
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
name: Falkor CI - Develop
on:
workflow_dispatch:
schedule:
- cron: "40 3 * * *" # 3:40am UTC
jobs:
CId:
name: Develop CI Suite
strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.x]
runs-on: ubuntu-latest
steps:
- name: GitHub Checkout
uses: actions/checkout@v3
- name: Use Node.js v${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
# NOTE: since the monorepo setup separate projects do not use npm cache
# cache: npm
- name: Install Npm Dependencies
run: |-
npm install --ignore-scripts --fund false
- name: Lint Project
run: |-
npm run lint
- name: Bundle Project
run: |-
npm run release
- name: Install Commander Locally
run: |-
npm install --no-save --fund false @falkor/falkor-commander
- name: DevTest Plugin
run: |-
npm run test