Skip to content

Merge pull request #80 from carrawao/feature/activities #2

Merge pull request #80 from carrawao/feature/activities

Merge pull request #80 from carrawao/feature/activities #2

name: CI
on: push
jobs:
build_test:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: npm ci, build and test
working-directory: ./Frontend
run: |
npm ci
CI=false npm run build
npm test