Skip to content

Commit

Permalink
Update GitHub workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
sultanofcardio committed Feb 8, 2024
1 parent 7c2c5ea commit 9adf742
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 13 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: CI
on: [pull_request]

env:
NODE_VERSION: 20.11.0

jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}

- uses: actions/cache@v4
with:
path: |
~/node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}

- run: yarn install --frozen-lockfile

- uses: wearerequired/lint-action@v2
with:
eslint: true
eslint_extensions: ts
eslint_args: 'src/**/*.ts'
prettier: true
prettier_extensions: ts
continue_on_error: false
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}

- name: Install deps
run: yarn install --frozen-lockfile

- uses: actions/cache@v4
with:
path: |
~/node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}

- name: Running tests
env:
REACT_APP_API_DOMAIN: http://localhost:8080
run: yarn test
13 changes: 0 additions & 13 deletions .github/workflows/tests.yml

This file was deleted.

0 comments on commit 9adf742

Please sign in to comment.