Skip to content

Merge pull request #54 from monkey0722/upgrade-module #111

Merge pull request #54 from monkey0722/upgrade-module

Merge pull request #54 from monkey0722/upgrade-module #111

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
on:
push:
branches: [ master ]
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [20]
timeout-minutes: 300
steps:
- name: checkout pushed commit
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: run lint and test
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: yarn install
- run: yarn typecheck
- run: yarn lint
- run: yarn test