try again
This commit is contained in:
parent
b40d9f2fdf
commit
b017ecc9ea
1 changed files with 11 additions and 4 deletions
15
.github/workflows/main.yml
vendored
15
.github/workflows/main.yml
vendored
|
|
@ -11,15 +11,22 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v4
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: '20'
|
||||
node-version: '16'
|
||||
|
||||
# - name: Install build tools
|
||||
# run: sudo apt-get install -y build-essential
|
||||
|
||||
#- name: List node_modules
|
||||
# run: ls -R node_modules
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
run: npm install --production=false
|
||||
# or npm ci
|
||||
|
||||
- name: Build the app
|
||||
run: npm run build
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue