Expense Tracker Tutorial #149
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# GitHub recommends pinning actions to a commit SHA. | |
# To get a newer version, you will need to update the SHA. | |
# You can also reference a tag or branch, but the action may change without warning. | |
name: Build should pass before merging | |
on: | |
pull_request: | |
branches: [develop] | |
jobs: | |
build: | |
name: Check build | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- run: npm install | |
- name: create env file | |
run: | | |
touch .env | |
echo TYPESENSE_COLLECTION_NAME="test-collection" >> .env | |
echo TYPESENSE_SERVER_HOST="test-host" >> .env | |
echo TYPESENSE_SEARCH_ONLY_APIKEY="test-api-key" >> .env | |
- run: npm run build |