Skip to content

feat: updated resume link #83

feat: updated resume link

feat: updated resume link #83

Workflow file for this run

name: CI
on: [push]
jobs:
test:
name: Test on node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [18]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v2.0.0
- name: Use node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
registry-url: https://registry.npmjs.org
- name: install
run: npm install
# - name: lint
# run: npm run lint:prod
- name: build
run: npm run build
# - name: test
# run: npm test