Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
setchy committed Jun 15, 2024
1 parent 78e5c1a commit 68d9744
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: Linting

on:
push:
branches:
- master
pull_request:
push:
branches:
- main
pull_request:

jobs:
run-tests:
name: Linting
runs-on: ubuntu-latest
lint:
name: Lint
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: yarn install
- run: yarn lint
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: yarn install
- run: yarn lint
28 changes: 14 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: Run Tests

on:
push:
branches:
- master
pull_request:
push:
branches:
- main
pull_request:

jobs:
run-tests:
name: Run Tests
runs-on: ubuntu-latest
lint:
name: Run Tests
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: yarn install
- run: yarn test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: yarn install
- run: yarn test

0 comments on commit 68d9744

Please sign in to comment.