merged different versions into one #79
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Site | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install nodejs | |
run: sudo apt install nodejs | |
- name: Install npm 7 | |
run: | | |
npm install npm@7 | |
- name: npm install | |
run: | | |
npm install | |
- name: build | |
run: | | |
npm run build | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: Public | |
path: public/ |