Skip to content

Bump actions/setup-node from 4.0.4 to 4.1.0 #455

Bump actions/setup-node from 4.0.4 to 4.1.0

Bump actions/setup-node from 4.0.4 to 4.1.0 #455

Workflow file for this run

name: Continuous Integration
on:
workflow_dispatch:
push:
branches:
- main
tags:
- '*'
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
concurrency:
group: '${{ github.workflow }}-${{ !contains(github.event.pull_request.labels.*.name, ''ci-test-flaky'') && github.head_ref || github.run_id }}'
cancel-in-progress: true
jobs:
ci:
timeout-minutes: 5
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: extractions/setup-just@dd310ad5a97d8e7b41793f8ef055398d51ad4de6 # v2.0.0
with:
just-version: 1.29.1
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version-file: '.node-version'
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- uses: mymindstorm/setup-emsdk@6ab9eb1bda2574c4ddb79809fc9247783eaf9021 # v14
with:
version: 3.1.61
actions-cache-folder: 'emsdk-cache'
- name: Install npm dependencies
run: npm ci
- name: Install test npm dependencies
run: cd ts/test && npm ci
- name: Build and test
run: just ci