Skip to content

Fix/backwards accelerometer #57

Fix/backwards accelerometer

Fix/backwards accelerometer #57

Workflow file for this run

name: Build Web App
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-web:
name: Build Web App
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Node.js dependencies
run: yarn install --frozen-lockfile
- name: Build app
run: yarn build