Skip to content

Commit

Permalink
đź‘· update ci node version
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineKM committed Dec 19, 2023
1 parent f7e5be4 commit f679db3
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 115 deletions.
22 changes: 0 additions & 22 deletions .github/problemMatchers/eslint-stylish.json

This file was deleted.

17 changes: 0 additions & 17 deletions .github/problemMatchers/tsc.json

This file was deleted.

76 changes: 0 additions & 76 deletions .github/workflows/checks.yml

This file was deleted.

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

on: [push]

jobs:
build:
name: Build, lint, and test

runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4

- name: Use Node
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "yarn"

- name: Install Dependencies
run: yarn

- name: Lint
run: yarn lint

- name: Build
run: yarn build

0 comments on commit f679db3

Please sign in to comment.