Skip to content

Feat/upgrade packages #9

Feat/upgrade packages

Feat/upgrade packages #9

Workflow file for this run

name: build
on:
pull_request:
branches:
- main
paths:
- '**/*.js'
- '**/*.ts'
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
node-version: [ 18 ]
steps:
- name: Running on ref
run: echo ${{ github.ref }}
- name: Upgrade distro
run: sudo apt update
- name: Checkout code
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install packages
run: |
yarn install
- name: Lint
run: |
yarn lint
- name: Test
run: |
yarn test