forked from cerc-io/cosmos-explorer
Compare commits
9
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
baa62a7c11 | ||
|
|
47d90de2e8 | ||
|
|
c1c74fc8e1 | ||
|
|
7f075c2bd7 | ||
|
|
9885d4b3eb | ||
|
|
78f5a1531f | ||
|
|
9bbe803765 | ||
|
|
f36a6bb87c | ||
|
|
2ee6d3ea00 |
@@ -0,0 +1,33 @@
|
||||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
# branches: [master, dev]
|
||||
paths:
|
||||
- 'src/**'
|
||||
pull_request:
|
||||
branches: [master, dev]
|
||||
paths:
|
||||
- 'src/**'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '20.x'
|
||||
|
||||
- name: Enable corepack and yarn
|
||||
run: corepack enable
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install --frozen-lockfile
|
||||
|
||||
- name: Build project
|
||||
run: yarn build
|
||||
Reference in New Issue
Block a user