chore: remove list of supported algs from package description as it got stale #9
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: test-browser | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- name: install | |
run: | | |
npm install -g npm@9 | |
npm install | |
- name: test | |
run: | | |
npm run pack-for-tests | |
npm run test:browser | |
env: | |
CI: "true" |