Skip to content

fix: auto update

fix: auto update #11

Workflow file for this run

name: ci
on:
push:
branches: ['*']
pull_request:
branches: ['*']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- name: checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: node version ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci --no-optional
- run: npm test