Skip to content

Update github action modules #41

Update github action modules

Update github action modules #41

Workflow file for this run

name: CI
on:
pull_request:
branches:
- "*"
push:
branches:
- master
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Use Node.js 10.x
uses: actions/setup-node@v4
with:
node-version: 10.x
- name: Build
env:
CI: true
run: |
npm ci
npm run build