Skip to content

Commit

Permalink
add github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
chregu committed Jan 3, 2023
1 parent c01a6b4 commit 21c206a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Main

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
node: [ 14 ]

steps:
- uses: actions/checkout@v3

- name: Use Node.js $${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'

- name: npm install and build
run: |
npm ci
npm run build

0 comments on commit 21c206a

Please sign in to comment.