Skip to content

node 20, no nsolid, upgrade everything #29

node 20, no nsolid, upgrade everything

node 20, no nsolid, upgrade everything #29

Workflow file for this run

name: "Integration"
on:
- push
jobs:
lint-test:
name: "Lint/Test"
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v1
with:
node-version: "20.10"
- name: "Checkout"
uses: actions/checkout@master
- name: Cache node_modules
id: cache
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: Install
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile --ignore-scripts
- name: Lint
run: yarn tpl lint
- name: Test
run: yarn tpl test
- name: Build
run: yarn tpl sls webpack
env:
NODE_ENV: production