chore: Refresh lockfile #11
This file contains hidden or 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: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: BrowserStack Env Setup | |
| uses: browserstack/github-actions/setup-env@master | |
| with: | |
| username: ${{ secrets.BROWSERSTACK_USERNAME }} | |
| access-key: ${{ secrets.BROWSERSTACK_ACCESS_KEY }} | |
| project-name: intl-pluralrules | |
| - name: BrowserStackLocal Start | |
| uses: browserstack/github-actions/setup-local@master | |
| with: | |
| local-testing: start | |
| local-identifier: random | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: { node-version: 16 } | |
| - run: npm ci | |
| - run: python -m http.server 8000 & | |
| - run: npm run test:browsers | |
| - name: BrowserStackLocal Stop | |
| uses: browserstack/github-actions/setup-local@master | |
| with: | |
| local-testing: stop |