Skip to content

Commit

Permalink
Merge branch 'main' into APP-25-sign-up-form
Browse files Browse the repository at this point in the history
  • Loading branch information
charbarnes committed Nov 30, 2023
2 parents c96109a + c808681 commit e660733
Show file tree
Hide file tree
Showing 23 changed files with 1,251 additions and 536 deletions.
79 changes: 79 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: Frontend Testing

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
backend-tests:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [19.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Run CI
run: npm ci


- name: Run testing suite
run: npm run test

prettier-check:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Run CI
run: npm ci

- name: Run Prettier Check
run: npm run prettier:check

eslint-check:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Run CI
run: npm ci

- name: Run Eslint Check
run: npm run lint

typescript-check:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Run CI
run: npm ci

- name: Run Typescript Check
run: npm run typescript:check
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.github/
Loading

0 comments on commit e660733

Please sign in to comment.