Skip to content

Commit

Permalink
Adds basic CI on GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
baldoalessandro committed Sep 19, 2023
1 parent 1c71ec9 commit db5bd82
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
steps:
- uses: actions/checkout@v2
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn lint .
- run: yarn test run
- run: yarn build
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Tiles Game

[![CI status](https://github.com/baldoalessandro/tiles_game/workflows/ci.yml/badge.svg)](https://github.com/baldoalessandro/tiles_games/actions)

A clone of NYT Tiles game in SolidJS

## TODO
Expand Down

0 comments on commit db5bd82

Please sign in to comment.