Update ai-profiling-hackathon.mdx (#184) #737
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: Smoke Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.12' | |
- name: install dependencies | |
run: yarn install | |
env: | |
NODE_OPTIONS: --openssl-legacy-provider | |
- name: ensure docusaurus can build | |
run: yarn build | |
env: | |
NODE_OPTIONS: --openssl-legacy-provider | |
- name: install gems | |
run: sudo gem install http colorize | |
- name: run url linter | |
run: .github/workflows/url-linter.rb |