Skip to content

Bracket parsing refactor and support for 「」『』<> brackets #161

Bracket parsing refactor and support for 「」『』<> brackets

Bracket parsing refactor and support for 「」『』<> brackets #161

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
unit:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- name: 'Setup tests'
run: bash test/setup.sh
- name: 'Run basic tests'
run: bash test/run.sh
integration:
runs-on: ubuntu-latest
needs: unit
if: ${{ secrets.BROWSERSTACK_USERNAME != "" && secrets.BROWSERSTACK_ACCESS_KEY != "" }}

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

View workflow run for this annotation

GitHub Actions / Node.js CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 32, Col: 9): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.BROWSERSTACK_USERNAME != "" && secrets.BROWSERSTACK_ACCESS_KEY != ""
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'npm'
- run: npm install
- name: 'Setup dist'
run: bash test/setup.sh --dist
- name: 'Run complete test suite'
run: bash test/run.sh --dist
env:
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}