Skip to content

chore(deps): bump @actions/core from 1.11.1 to 2.0.1 #16

chore(deps): bump @actions/core from 1.11.1 to 2.0.1

chore(deps): bump @actions/core from 1.11.1 to 2.0.1 #16

Workflow file for this run

name: main
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/cache@v4
with:
path: node_modules
key: "${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}"
- run: npm install
- run: npm run build
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/cache@v4
with:
path: node_modules
key: "${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}"
- run: npm install
- run: npm run lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/cache@v4
with:
path: node_modules
key: "${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}"
- run: npm install
- run: npm run test