fix: Allow non snake case #144
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
# 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: Build main site | |
on: | |
push: | |
branches: [ main ] | |
# pull_request: | |
# branches: [ main ] | |
jobs: | |
build: | |
# runs-on: ubuntu-18.04 | |
runs-on: ubuntu-latest | |
# strategy: | |
# matrix: | |
# node-version: [12.x, 14.x, 16.x] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# cache: 'npm' | |
- name: Setup Rust | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: nightly | |
target: wasm32-unknown-unknown | |
- name: Setup wasm-pack | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- name: Build wasm dependency | |
run: yarn build:wasm | |
- name: Generate meta | |
run: yarn gen_meta | |
- name: Install node packages | |
run: yarn install --immutable --immutable-cache --check-cache | |
- name: Build | |
run: yarn build | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: dist/ | |
- name: Deploy | |
uses: easingthemes/ssh-deploy@main | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.MONA_SSH_KEY }} | |
SOURCE: dist/ | |
REMOTE_HOST: ${{ secrets.MONA_REMOTE_HOST }} | |
REMOTE_USER: ${{ secrets.MONA_REMOTE_USER }} | |
TARGET: ${{ secrets.MONA_TARGET }} | |
# - name: Rename dist folder | |
# run: mv dist dist_no_ignore | |
# - name: Commit dist | |
# uses: stefanzweifel/git-auto-commit-action@v4 | |
# with: | |
# commit_message: "ci: Update build result" | |
# branch: dist_main | |
# create_branch: true | |
# push_options: "--force" |