Skip to content

Merge pull request #12 from tiktok/fix-log-format #12

Merge pull request #12 from tiktok/fix-log-format

Merge pull request #12 from tiktok/fix-log-format #12

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
build:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.platform }}-${{ matrix.node }}
cancel-in-progress: true
strategy:
fail-test: false

Check failure on line 18 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 18, Col: 7): Unexpected value 'fail-test'
matrix:
node:
- '16'
platform:
- ubuntu-latest
name: '${{ matrix.platform }} / Node.js ${{ matrix.node }}'
runs-on: ${{ matrix.platform }}
steps:
- name: Configure Git
run: |
git config --local user.name tiktokbot
git config --local user.email [email protected]
- name: Checkout Commit
uses: actions/checkout@v3
with:
fetch-depth: 2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Verify Change Logs
run: node common/scripts/install-run-rush.js change --verify
- name: Rush Install
run: node common/scripts/install-run-rush.js install
- name: Rush rebuild
run: node common/scripts/install-run-rush.js rebuild --verbose --production
- name: Rush test
run: node common/scripts/install-run-rush.js test --verbose