5.1.0 #299
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: ci | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
tags: ['*'] | |
jobs: | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: { node-version: 18 } | |
- run: npm ci | |
- run: npx eslint . | |
examples: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: { node-version: 18 } | |
- run: npm ci | |
- run: npm run prepack | |
- run: npm run build --workspaces | |
pack: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: { node-version: 18 } | |
- run: npm ci | |
- run: npm pack | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: package | |
path: '*.tgz' | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: { node-version: 18 } | |
- run: npm ci | |
- run: npx prettier --check . | |
remark: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: { node-version: 18 } | |
- run: npm ci | |
- run: npx remark --frail . | |
tsc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: { node-version: 18 } | |
- run: npm ci | |
- run: npx tsc | |
playwright: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: { node-version: 18 } | |
- run: npm ci | |
- run: npx playwright install --with-deps | |
- run: npm run prepack | |
- run: npx playwright test | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 | |
release: | |
runs-on: ubuntu-latest | |
needs: | |
- eslint | |
- examples | |
- pack | |
- playwright | |
- prettier | |
- remark | |
- tsc | |
if: startsWith(github.ref, 'refs/tags/') | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: https://registry.npmjs.org | |
- uses: actions/download-artifact@v3 | |
with: | |
name: package | |
- run: npm publish *.tgz --provenance | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |