Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

75 changes: 0 additions & 75 deletions .eslintrc.json

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/actions.yml

This file was deleted.

50 changes: 50 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: CI

on:
push:
branches: ["main"]
tags-ignore:
- "**"
pull_request:
branches:
- main
workflow_dispatch:

jobs:
format-and-lint:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Volta
uses: volta-cli/action@v4
- name: Install
shell: bash
run: |
npm ci
- name: Format
shell: bash
run: |
npm run lint

build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Volta
uses: volta-cli/action@v4
- name: Install
shell: bash
run: |
npm ci
- name: Build
shell: bash
run: |
npm run build
- name: Test
shell: bash
run: |
npm run test:run
Loading