Bracket parsing refactor and support for 「」『』<> brackets #161
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 GitHub Actions / Node.js CIInvalid workflow file
|
||
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 }} |