Skip to content

Commit

Permalink
chore: Remove Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cballevre committed Sep 18, 2024
1 parent 4821ba7 commit 1303423
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 91 deletions.
48 changes: 8 additions & 40 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,53 +7,21 @@ on:
- master

jobs:
setup:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
node-version-file: '.nvmrc'
- name: Install dependencies
run: yarn install --frozen-lockfile

lint:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
cache: 'yarn'
- name: Lint
run: yarn lint

test:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
cache: 'yarn'
- name: Unit tests
- name: Test
run: yarn test

build:
needs: [lint, test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
cache: 'yarn'
- name: Build app
- name: Build
run: yarn build
51 changes: 0 additions & 51 deletions .travis.yml

This file was deleted.

0 comments on commit 1303423

Please sign in to comment.