Skip to content

npm packageの最新化(2024年10月末) #250

npm packageの最新化(2024年10月末)

npm packageの最新化(2024年10月末) #250

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build And Test
runs-on: ubuntu-latest
timeout-minutes: 7
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: |
npm ci --legacy-peer-deps
npm run lint
npm run test:ci
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}