Use thread_detail_delete URL name properly #43
Workflow file for this run
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: Node CI (django-ai-assistant-client) | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Install dependencies | |
working-directory: ./frontend | |
run: | | |
npm install | |
- name: Run ci | |
working-directory: ./frontend | |
run: | | |
npm ci | |
- name: Run build | |
working-directory: ./frontend | |
run: | | |
npm run build | |
- name: Run tests | |
working-directory: ./frontend | |
run: | | |
npm test | |
# When the repo becomes public: | |
# 1. Add the COVERALLS_REPO_TOKEN to GitHub secrets | |
# 2. Uncomment the lines below | |
# npm run coveralls | |
# env: | |
# COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} |