Migrate usage examples test to JS #7
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: main | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint | |
run: npm run lint | |
- name: Check format | |
run: npm run format:check | |
- name: Build assets | |
run: npm run build:assets | |
- name: Test | |
run: npm run test:ci | |
- name: Publish test and coverage metrics | |
uses: gaelgirodon/ci-badges-action@v1 | |
with: | |
gist-id: fbde4d59b7dd3c4f2cc9c4fea3497ae1 | |
token: ${{ secrets.GIST_TOKEN }} | |
- name: Test usage examples from README.md | |
run: npm run test:readme |