fix(deps): update non-major-updates #448
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |