Replace fullstory with smartlook in docs #257
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
on: | |
pull_request: | |
branches: | |
- main | |
name: pull_request_test | |
jobs: | |
pull_request_test: | |
name: pull_request_test | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.event.pull_request.title, 'skip ci') }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: NPM Install | |
run: npm install --force | |
- name: Pretty | |
run: npm run-script prettier-check | |
- name: Build | |
run: npm run-script build |