Skip to content

Commit

Permalink
.github: init nodejs-ci workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
narekhovhannisyan committed Aug 16, 2023
1 parent 6a68d39 commit 52c9701
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/nodejs-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Node.js CI

on: push

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'

- name: Install dependencies
run: yarn install

- name: Run tests
run: yarn test

0 comments on commit 52c9701

Please sign in to comment.