Skip to content

Commit

Permalink
Use github actions for test and deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
oblador committed Oct 26, 2023
1 parent 66c4e5a commit 743f6b6
Show file tree
Hide file tree
Showing 4 changed files with 47 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
21 changes: 21 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Tests

on:
- push
- pull_request

jobs:
test:
name: Static analysis
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: Run static analysis
run: yarn test
20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

0 comments on commit 743f6b6

Please sign in to comment.