Skip to content

Commit

Permalink
Merge pull request #18 from eduardconstantin/eduardconstantin-patch-1
Browse files Browse the repository at this point in the history
Create CI.yml
  • Loading branch information
eduardconstantin authored Sep 15, 2023
2 parents eb3a5ed + de0e4bf commit e00724a
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: CI

on:
push:
branches: [main]
pull_request:
branches: [main]

permissions:
contents: read

env:
CI: true

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'

- name: Use cached node_modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-${{ matrix.node-version }}-node_modules-${{ hashFiles('**/package-lock.json') }}

- name: Install dependencies and build package
run: |
npm install
npm run build

0 comments on commit e00724a

Please sign in to comment.