Skip to content

chore: fix action

chore: fix action #2

Workflow file for this run

name: build
on:
push:
branches: main
jobs:
static:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn build
- name: Push built files
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
message: "chore: yarn build"