deps: Use biomejs instead of eslint for code linting (#111) #557
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Basic Develop Test | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- release/* | |
paths-ignore: | |
- '**.md' | |
defaults: | |
run: | |
shell: nu {0} | |
jobs: | |
basic-usage: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: hustcer/setup-nu@develop | |
with: | |
version: '*' | |
enable-plugins: true | |
- run: print (version); print $"(char nl)Dir contents:(char nl)"; ls ((which nu).path.0 | path dirname) | |
- run: | | |
print $'Current env:(char nl)' | |
print $env | |
- name: You can run bash commands, too | |
run: pwd && ls -la | |
shell: bash |