This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
Hide the status message when the selected file changes (#381) #521
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: Run tests | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
test: | |
name: Run Tests | |
runs-on: ubuntu-latest | |
env: | |
B2_KEY_ID: ${{ secrets.B2_KEY_ID }} | |
B2_APPLICATION_KEY: ${{ secrets.B2_APPLICATION_KEY }} | |
B2_BUCKET_ID: ${{ secrets.B2_BUCKET_ID }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install front end NPM deps | |
run: npm ci | |
- name: Build front end | |
run: npm run build | |
- name: Install back end NPM deps | |
run: cd backend && npm ci && cd .. | |
- run: npm test |