Skip to content

Merge branch 'Timeular-master' #1

Merge branch 'Timeular-master'

Merge branch 'Timeular-master' #1

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
lint:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: clang-format lint
# You may pin to the exact commit or the version.
# uses: DoozyX/clang-format-lint-action@84b814a54950e27ac65a62069802df099405ef77
uses: DoozyX/[email protected]
with:
# Source folder to check formatting
source: './src' # optional, default is .
# Version of clang-format
# clangFormatVersion: # optional, default is 9
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: windows-2016
# 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: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: 13.x
- name: Setup
run: |
yarn install --frozen-lockfile
yarn build:source
yarn ci