mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
19 lines
311 B
YAML
19 lines
311 B
YAML
name: Browser testing locally
|
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
browser-tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 16.x
|
|
- run: npm ci
|
|
- run: npm run test:browser
|
|
env:
|
|
CI: true
|