Skip to content

chore: 🤖 update gh actions to use node v20.6 #28

chore: 🤖 update gh actions to use node v20.6

chore: 🤖 update gh actions to use node v20.6 #28

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
node-version: '20.6'
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '20.6'
cache: 'yarn'
check-latest: true
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn run test
- name: Lint code
run: yarn run lint