Skip to content

chore: update Github Actions versions #416

chore: update Github Actions versions

chore: update Github Actions versions #416

Workflow file for this run

name: Test JS
on:
push:
branches-ignore:
- "master"
jobs:
jslint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
name: JS Test
steps:
- name: Checkout source code
uses: actions/checkout@master
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Build source
run: yarn run build
- name: Run lint checks
run: yarn run lint