Skip to content

Merge pull request #83 from k2d222/auth #341

Merge pull request #83 from k2d222/auth

Merge pull request #83 from k2d222/auth #341

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js latest
uses: actions/setup-node@v4
with:
node-version: latest
- run: |
cd client || exit 1
npm ci
npm run build
npm run check