Skip to content

update actual dependency in lock file #120

update actual dependency in lock file

update actual dependency in lock file #120

Workflow file for this run

# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Azoth CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Use Node.js latest
uses: actions/setup-node@v4
with:
node-version: latest
- run: pnpm install
# Needed for CI on GitHub
- run: pnpm update -r
- run: pnpm lint
- run: pnpm test
env:
CI: true