Skip to content

Bump the github-actions group with 1 update #356

Bump the github-actions group with 1 update

Bump the github-actions group with 1 update #356

Workflow file for this run

name: CI
on: [pull_request, push]
permissions: {}
jobs:
ci:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup nodejs
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Install tools
run: npm install
- name: Lint code
run: npm run lint
- name: Build
run: npm run build