Merge pull request #92 from datalust/dependabot/npm_and_yarn/glob-10.5.0 #109
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: Browser Integration | |
| on: | |
| push: | |
| branches: [ dev ] | |
| pull_request: | |
| branches: [ dev ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: 22.x | |
| - run: npm install && cd example/browser && npm install | |
| - run: docker run --name seq -d -p 5341:80 -e ACCEPT_EULA=Y -e SEQ_FIRSTRUN_NOAUTHENTICATION=true datalust/seq:latest | |
| - run: cd example/browser && npm run test:html | |
| - run: docker rm -f seq |