Skip to content

Upload to tmp folder then copy into web server folder then remove tmp #4

Upload to tmp folder then copy into web server folder then remove tmp

Upload to tmp folder then copy into web server folder then remove tmp #4

Workflow file for this run

on: push
name: Test
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- uses: actions/setup-node@v2
with:
node-version: '20'
- run: npm install
- run: npm run build
- run: sudo apt-get install tree
- run: tree build
- run: npm run test