Skip to content

Commit

Permalink
feat(ci): added build step in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalybaev committed May 3, 2023
1 parent 15cb466 commit 8b5675f
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build

on:
pull_request:
push:
branches:
- main

jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 18
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Run build
run: pnpm build


0 comments on commit 8b5675f

Please sign in to comment.