Skip to content

fix(deps): update non-major-updates #448

fix(deps): update non-major-updates

fix(deps): update non-major-updates #448

Workflow file for this run

name:
nextjs-static-app-ci
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16]
steps:
# checkout repository
- name: Checkout Repo
uses: actions/checkout@v2
# prepare node runtime
- name: Prepare Node Env
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
# confirm node version
- name: Node Version
run: node -v
# install dependencies
- name: Install Dependencies
run: yarn
# test build
- name: Test Build(Lint and tsc)
run: yarn build:ci