Skip to content

Commit

Permalink
Merge pull request #1 from pavleprica/feature/ci
Browse files Browse the repository at this point in the history
Add ci run
  • Loading branch information
pavleprica committed Jun 22, 2022
2 parents 1517bcb + 1227d89 commit 7ab46ae
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/pr-test.yml
@@ -0,0 +1,22 @@
name: Install and build

on:
pull_request:
push:
branches:
- master

jobs:
install-and-build:
name: Run npm install and build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 16

- name: Run npm ci and build
run: npm ci && npm run build

0 comments on commit 7ab46ae

Please sign in to comment.