Skip to content

Commit

Permalink
chore: github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasdinonolte committed May 30, 2024
1 parent 3f8d3fd commit 18220a1
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI
on: [push]

jobs:
lint:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [20]
steps:
- name: Checkout repo
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm ci

- name: Lint
run: npm run lint

- name: Test
run: npm run test

- name: Build
run: npm run build

0 comments on commit 18220a1

Please sign in to comment.