Skip to content

Commit

Permalink
Configure Github actions for tests and deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
oblador committed Oct 26, 2023
1 parent 94c7aa0 commit 6aa300b
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 21 deletions.
1 change: 0 additions & 1 deletion .github/FUNDING.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Deploy

on:
push:
branches:
- master

jobs:
publish:
name: Release new version
if: github.repository_owner == 'oblador'
runs-on: ubuntu-latest
environment: Deploy
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Publish
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_PUBLISH_TOKEN }}
provenance: true
23 changes: 23 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Tests

on:
- push
- pull_request

jobs:
tests:
name: Tests
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: yarn --frozen-lockfile --non-interactive --silent --ignore-scripts
- name: Static analysis
run: yarn lint
- name: Run tests
run: yarn jest
20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

0 comments on commit 6aa300b

Please sign in to comment.