Skip to content

Commit

Permalink
build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrew committed Nov 2, 2023
1 parent 8f2bce1 commit 1623170
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test

env:
NODE_VERSION: v14.16.x

on:
push:
pull_request:
types: [opened, synchronize]

jobs:
build:
runs-on: [self-hosted, dev]
steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v1
with:
node-version: ${{ env.NODE_VERSION }}

- name: Prepare environment
run: |
npm i -g npm@7
npm ci
npm test
npm run lint

0 comments on commit 1623170

Please sign in to comment.