Skip to content

ci: revert build storybook script (#224) #189

ci: revert build storybook script (#224)

ci: revert build storybook script (#224) #189

Workflow file for this run

# See https://github.com/google-github-actions/release-please-action
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: write
pull-requests: write
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Install Playwright
run: npx playwright install --with-deps
- name: Build and test
run: |
npm ci
npm run format:check
npm run test
npm run build:package
npm run build:dist
npm run storybook:build
- name: Serve Storybook and run accessibility tests
run: |
npm run test:storybook
- name: Create zip artifact
if: github.ref == 'refs/heads/main'
run: |
mkdir -p artifact
zip -r artifact/ogcio-ds.zip dist/@ogcio/*
- uses: googleapis/release-please-action@v4
id: release
with:
release-type: node
if: github.ref == 'refs/heads/main'
- name: Upload Release Artifact
if: ${{ steps.release.outputs.release_created }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload ${{ steps.release.outputs.tag_name }} ./artifact/ogcio-ds.zip
- name: Publish to npm
if: ${{ steps.release.outputs.release_created }}
run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}