Skip to content

Commit

Permalink
chore: Update GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
cyaiox committed Jun 17, 2024
1 parent 6c4bf9c commit fa197a1
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 38 deletions.
38 changes: 0 additions & 38 deletions .github/workflows/main.yaml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 20.x
uses: actions/setup-node@v1
with:
node-version: 20.x
- name: Install
run: npm ci --legacy-peer-deps
- name: Test
run: npm run test:coverage
if: ${{ always() }}
- name: report coverage
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit fa197a1

Please sign in to comment.