Skip to content

Added a useState for filteredEvents which will now be passed to the L… #11

Added a useState for filteredEvents which will now be passed to the L…

Added a useState for filteredEvents which will now be passed to the L… #11

Workflow file for this run

name: test-and-build
on:
push:
branches: ["**"]
jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "20"
- name: Navigate to project folder
run: cd TimeTrace
- name: Install dependencies
run: npm install
working-directory: TimeTrace
# - name: Run tests
# run: npm test
# working-directory: TimeTrace/src <<When test enviroment have been setup, this can be commented in>>
- name: Build project
run: CI=false npm run build
working-directory: TimeTrace