Skip to content

Build and Lint

Build and Lint #3

Workflow file for this run

name: Build
run-name: Build and Lint
on: [push]
jobs:
# lint:
# runs-on: ubuntu-latest
# container:
# image: node:20
# steps:
# - name: Check out repository code
# uses: actions/checkout@v4
# - run: cd client
# - run: npm install --loglevel verbose
# - run: npm run lint
# build:
# runs-on: ubuntu-latest
# container:
# image: node:20
# steps:
# - name: Check out repository code
# uses: actions/checkout@v4
# - run: cd client
# - run: npm install --loglevel verbose
# - run: npm run build
simple-test:
runs-on: ubuntu-latest
container:
image: node:20
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: List files in the repository
run: |
ls
- run: cd client
- run: ls
- run: cd ../server
- run: ls
- run: cd ../quadoach
- run: echo "🍏 This job's status is ${{ job.status }}."