Skip to content

Commit

Permalink
feat: create ci action #21
Browse files Browse the repository at this point in the history
  • Loading branch information
wazolab committed Apr 16, 2024
1 parent 8044851 commit ea17e84
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Continuous Integration

on: push

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
name: Install dependencies and Build app
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: corepack enable

- name: Set Node.js 18.20.1
uses: actions/setup-node@v3
with:
node-version: 18.20.1

- name: Run install
uses: borales/actions-yarn@v4
with:
cmd: install

- name: Lint codebase
uses: borales/actions-yarn@v4
with:
cmd: lint

0 comments on commit ea17e84

Please sign in to comment.