2024-04-25 18:32:30 +00:00
|
|
|
name: Tests
|
2024-04-25 18:06:55 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [opened, reopened, synchronize]
|
|
|
|
branches:
|
|
|
|
- dev
|
2024-04-25 20:47:45 +00:00
|
|
|
- main
|
2024-04-25 18:06:55 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- dev
|
2024-04-25 18:47:12 +00:00
|
|
|
- main
|
2024-04-25 18:06:55 +00:00
|
|
|
jobs:
|
|
|
|
run-tests:
|
|
|
|
name: All tests
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
id-token: write
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
BROWSER: chrome
|
|
|
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
steps:
|
|
|
|
- name: Check out Git repository
|
2024-04-28 17:05:42 +00:00
|
|
|
uses: actions/checkout@v4
|
2024-04-25 18:06:55 +00:00
|
|
|
- name: Setup Nodejs
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
2024-05-03 18:31:14 +00:00
|
|
|
node-version: 18.18.0
|
2024-04-25 18:06:55 +00:00
|
|
|
cache: 'npm'
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm install
|
|
|
|
- name: All tests
|
|
|
|
run: npm run test
|
|
|
|
- name: Upload coverage
|
|
|
|
uses: codecov/codecov-action@v4
|
|
|
|
with:
|
2024-04-25 19:06:55 +00:00
|
|
|
fail_ci_if_error: false
|
2024-04-28 17:05:42 +00:00
|
|
|
codecov_yml_path: ./.github/codecov.yml
|
2024-04-25 18:06:55 +00:00
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
test-code-examples:
|
|
|
|
name: Check typedocs
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
id-token: write
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out Git repository
|
2024-04-28 17:05:42 +00:00
|
|
|
uses: actions/checkout@v4
|
2024-04-25 18:06:55 +00:00
|
|
|
- name: Setup Nodejs
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
2024-05-03 18:31:14 +00:00
|
|
|
node-version: 18.18.0
|
2024-04-25 18:06:55 +00:00
|
|
|
cache: 'npm'
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm install
|
|
|
|
- name: Build Docs
|
|
|
|
run: npm run build && npm run docs:json
|
|
|
|
- name: tsdoc @example checks
|
|
|
|
run: npm run test:examples
|
|
|
|
test-html-examples:
|
|
|
|
name: Run HTML Examples
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
id-token: write
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out Git repository
|
2024-04-28 17:05:42 +00:00
|
|
|
uses: actions/checkout@v4
|
2024-04-25 18:06:55 +00:00
|
|
|
- name: Setup Nodejs
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
2024-05-03 18:31:14 +00:00
|
|
|
node-version: 18.18.0
|
2024-04-25 18:06:55 +00:00
|
|
|
cache: 'npm'
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm install
|
|
|
|
- name: Build
|
|
|
|
run: npm run build
|
|
|
|
- name: Code example tests
|
|
|
|
run: npm run test:html
|
|
|
|
test-lint:
|
|
|
|
name: Linting and environment checks
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
id-token: write
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out Git repository
|
2024-04-28 17:05:42 +00:00
|
|
|
uses: actions/checkout@v4
|
2024-04-25 18:06:55 +00:00
|
|
|
- name: Setup Nodejs
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
2024-05-03 18:31:14 +00:00
|
|
|
node-version: 18.18.0
|
2024-04-25 18:06:55 +00:00
|
|
|
cache: 'npm'
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm install
|
|
|
|
- name: Linting
|
|
|
|
run: npm run lint
|
|
|
|
test-readme:
|
|
|
|
name: Ensure that examples in the README compile
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
id-token: write
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out Git repository
|
2024-04-28 17:05:42 +00:00
|
|
|
uses: actions/checkout@v4
|
2024-04-25 18:06:55 +00:00
|
|
|
- name: Setup Nodejs
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
2024-05-03 18:31:14 +00:00
|
|
|
node-version: 18.18.0
|
2024-04-25 18:06:55 +00:00
|
|
|
cache: 'npm'
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm install
|
|
|
|
- name: Build
|
|
|
|
run: npm run build
|
|
|
|
- name: Test
|
2024-04-25 21:19:50 +00:00
|
|
|
run: npm run test:readme
|
2024-05-03 18:31:14 +00:00
|
|
|
test-integrations:
|
|
|
|
name: Test integrations
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
id-token: write
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out Git repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Nodejs
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version: 18.18.0
|
|
|
|
cache: 'npm'
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm install
|
|
|
|
- name: Build
|
|
|
|
run: npm run build
|
|
|
|
- name: Test
|
|
|
|
run: npm run test:integrations
|
2024-04-25 21:19:50 +00:00
|
|
|
publish:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
# make sure all the tests pass first
|
2024-05-03 18:31:14 +00:00
|
|
|
needs: [run-tests, test-code-examples, test-html-examples, test-lint, test-readme, test-integrations]
|
2024-04-25 21:19:50 +00:00
|
|
|
# not on PRs
|
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
env:
|
|
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
GITHUB_CI: true
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
# Setup .npmrc file to publish to npm
|
|
|
|
- uses: actions/setup-node@v4
|
|
|
|
with:
|
2024-05-03 18:31:14 +00:00
|
|
|
node-version: 18.18.0
|
2024-04-25 21:19:50 +00:00
|
|
|
registry-url: 'https://registry.npmjs.org'
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm install
|
|
|
|
- name: Build
|
|
|
|
run: npm run build
|
|
|
|
- name: Increment version
|
|
|
|
run: npm run increment
|
|
|
|
- name: Publish @next
|
2024-04-28 17:05:26 +00:00
|
|
|
# dev branch gets published with @next tag
|
2024-04-25 21:19:50 +00:00
|
|
|
run: npm publish --tag next
|
|
|
|
if: ${{ github.ref == 'refs/heads/dev' }}
|
|
|
|
- name: Publish @latest
|
2024-04-28 17:05:26 +00:00
|
|
|
# main branch gets published with @latest tag
|
2024-04-25 21:19:50 +00:00
|
|
|
run: npm publish
|
|
|
|
if: ${{ github.ref == 'refs/heads/main' }}
|