You need to sign in or sign up before continuing.
Commit 4c4fc1f9 authored by Hoanganhvu123's avatar Hoanganhvu123

Remove github workflows to allow push without workflow scope

parent 93a51fe5
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test & build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run server tests
run: npm test -w server
- name: Build server
run: npm run build -w server
- name: Build client
run: npm run build -w client
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment