You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2
+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3
+
4
+
name: Node.js CI
5
+
6
+
on:
7
+
push:
8
+
branches:
9
+
- main
10
+
- release/*
11
+
- devs/*
12
+
pull_request:
13
+
branches:
14
+
- main
15
+
- release/*
16
+
schedule:
17
+
# * is a special character in YAML so you have to quote this string
18
+
- cron: '0 2,14 * * *'
19
+
release:
20
+
types: # This configuration does not affect the page_build event above
21
+
- created
22
+
23
+
jobs:
24
+
build:
25
+
26
+
runs-on: ubuntu-latest
27
+
28
+
strategy:
29
+
matrix:
30
+
node-version: [12.x, 14.x, 16.x]
31
+
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
0 commit comments