Skip to content

chore!: upgrade to node 20x #96

chore!: upgrade to node 20x

chore!: upgrade to node 20x #96

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build and lint on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version-file: .tool-versions
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- name: Lint
run: yarn lint
- name: Build
run: yarn build