Skip to content

Commit

Permalink
Created build check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexDyakonov authored Jun 16, 2024
1 parent 598533f commit 918d35f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build and Test Vue Project

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'

- name: Install dependencies
run: yarn install

- name: Build project
run: yarn build

0 comments on commit 918d35f

Please sign in to comment.