forked from zwave-js/zwave-js
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (32 loc) · 936 Bytes
/
Copy pathcc-bot.yml
File metadata and controls
40 lines (32 loc) · 936 Bytes
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
name: Update CC implementation status
# Only run this on changes to the master branch
on:
push:
branches:
- master
jobs:
gh-cc-table:
if: contains(github.event.head_commit.message, '[skip ci]') == false
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x] # This should be LTS
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Compile TypeScript code
run: yarn run build
# The script will check if there are changes before updating the issue
- name: Update CC table
uses: ./.github/actions/gh-cc-table
with:
githubToken: ${{ secrets.GITHUB_TOKEN }}
env:
CI: true