Skip to content

不要なものを削除 #3

不要なものを削除

不要なものを削除 #3

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
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: npx jest --coverage
- name: Upload Coverage
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}