mirror of
https://github.com/Ocelot-Social-Community/ocelot.social.git
synced 2026-02-06 09:55:52 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.1 to 6.0.2.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](8e8c483db8...de0fac2e45)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 6.0.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
23 lines
504 B
YAML
23 lines
504 B
YAML
name: lint test CI
|
|
|
|
on: [push,pull_request_target]
|
|
|
|
jobs:
|
|
build-test:
|
|
name: Lint Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.1.7
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v4.0.3
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
|
|
- name: npm-install
|
|
run: npm install
|
|
|
|
- name: npm-test
|
|
run: npm test
|