Skip to content

Commit

Permalink
Merge branch 'main' of github.com:bz0/gas-template into main
Browse files Browse the repository at this point in the history
  • Loading branch information
bz0 committed Nov 1, 2024
2 parents 6eb8ebd + 0dd1315 commit 03f9541
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build and Deploy
on:
push:
branches:
- master
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@master
- name: Install Dependencies
run: npm install
- name: Run Test
run: npm run test:coverage
- name: Upload Coverage
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 03f9541

Please sign in to comment.