Skip to content

Fix systems filter in header (#42) #8

Fix systems filter in header (#42)

Fix systems filter in header (#42) #8

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- run: yarn lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- run: yarn test
publish:
runs-on: ubuntu-latest
needs: [lint, test]
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- run: yarn build
- uses: changesets/action@v1
with:
version: yarn run changeset version
#publish: yarn run changeset publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#NPM_TOKEN: ${{ secrets.NPM_TOKEN }}