Skip to content

chore(deps): update actions/checkout action to v4 #549

chore(deps): update actions/checkout action to v4

chore(deps): update actions/checkout action to v4 #549

Workflow file for this run

name: Test
on:
push:
branches-ignore:
- gh-pages
- releases/**
pull_request:
branches-ignore:
- gh-pages
- releases/**
types:
- opened
- synchronize
- reopened
permissions:
contents: read
env:
CI: true
jobs:
test:
name: 'Test on Node.js ${{ matrix.node }} OS: ${{matrix.os}}'
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [14, 16]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install
run: yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test