fix: Do not require quotes for implicit keys with flow indicators #402
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: Browsers | |
on: | |
- push | |
- workflow_dispatch | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: { submodules: true } | |
- uses: actions/setup-node@v3 | |
with: { node-version: 16 } | |
- name: Cache BrowserStackLocal | |
uses: actions/cache@v1 | |
with: | |
path: ~/.browserstack | |
key: bsl-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
bsl-${{ runner.os }}- | |
- run: npm ci | |
- run: npm run build:browser | |
- name: Playground setup | |
working-directory: ./playground | |
run: npm ci | |
- name: Run tests on BrowserStack | |
working-directory: ./playground | |
run: npm test | |
env: | |
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }} | |
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }} |