Fix: inverted
option causing sticky headers, ListEmptyComponent to appear inverted, and causing scroll direction to be inverted on web
#1201
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: website | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
RUBY_VERSION: 3.0.3 | |
NODE_VERSION: 20.4.0 | |
jobs: | |
build-documentation: | |
name: "Build documentation" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- run: | | |
cd documentation | |
yarn | |
yarn build |